diff --git a/CMPUT 250 W24 Lab 3/Assets/DVDLogo.cs b/CMPUT 250 W24 Lab 3/Assets/DVDLogo.cs index ce0322575..0a20a1988 100644 --- a/CMPUT 250 W24 Lab 3/Assets/DVDLogo.cs +++ b/CMPUT 250 W24 Lab 3/Assets/DVDLogo.cs @@ -5,7 +5,7 @@ public class DVDLogo : MonoBehaviour { //Speed it moves at - public float speed = 3; + public float speed = 10; //Bounds of the screen (could get these with camera bounds but we can do this since it's a fixed camera) public float X_Max = 5, Y_Max = 4; @@ -19,7 +19,7 @@ void Start() //Randomly initialize direction direction = new Vector3(Random.Range(-1f,1f), Random.Range(-1f,1f)); direction.Normalize(); - + speed = 10; } private void FlipDirectionX(){ diff --git a/CMPUT 250 W24 Lab 3/Assets/Scenes/SampleScene.unity b/CMPUT 250 W24 Lab 3/Assets/Scenes/SampleScene.unity index edc272572..4dd24a91a 100644 --- a/CMPUT 250 W24 Lab 3/Assets/Scenes/SampleScene.unity +++ b/CMPUT 250 W24 Lab 3/Assets/Scenes/SampleScene.unity @@ -277,7 +277,7 @@ Transform: m_GameObject: {fileID: 755472557} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0.2, y: 0.2, z: 1} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 421997421} m_RootOrder: 0 @@ -321,7 +321,7 @@ SpriteRenderer: m_SortingLayerID: 0 m_SortingLayer: 0 m_SortingOrder: 0 - m_Sprite: {fileID: 21300000, guid: 6e7069a7db07f489a87c0797b3ff2165, type: 3} + m_Sprite: {fileID: 21300000, guid: 887c78d215841574199f044ffbd066ef, type: 3} m_Color: {r: 1, g: 1, b: 1, a: 1} m_FlipX: 0 m_FlipY: 0 @@ -563,10 +563,10 @@ MonoBehaviour: m_Alignment: 0 m_AlignByGeometry: 0 m_RichText: 1 - m_HorizontalOverflow: 0 + m_HorizontalOverflow: 1 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: This is a bouncing ball + m_Text: This is a bouncing soccer ball --- !u!222 &2098954804 CanvasRenderer: m_ObjectHideFlags: 0 diff --git a/CMPUT 250 W24 Lab 3/Assets/SoccerBall.png b/CMPUT 250 W24 Lab 3/Assets/SoccerBall.png new file mode 100644 index 000000000..2f28400da Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Assets/SoccerBall.png differ diff --git a/CMPUT 250 W24 Lab 3/Assets/SoccerBall.png.meta b/CMPUT 250 W24 Lab 3/Assets/SoccerBall.png.meta new file mode 100644 index 000000000..8a6bab278 --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Assets/SoccerBall.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 887c78d215841574199f044ffbd066ef +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/CMPUT 250 W24 Lab 3/Library/APIUpdater/project-dependencies.graph b/CMPUT 250 W24 Lab 3/Library/APIUpdater/project-dependencies.graph index 8620e66ef..3408058a7 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/APIUpdater/project-dependencies.graph and b/CMPUT 250 W24 Lab 3/Library/APIUpdater/project-dependencies.graph differ diff --git a/CMPUT 250 W24 Lab 3/Library/ArtifactDB b/CMPUT 250 W24 Lab 3/Library/ArtifactDB index 957140ffc..121153a2d 100755 Binary files a/CMPUT 250 W24 Lab 3/Library/ArtifactDB and b/CMPUT 250 W24 Lab 3/Library/ArtifactDB differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/01/0106fbb7704d4790e95ca6b138189eca b/CMPUT 250 W24 Lab 3/Library/Artifacts/01/0106fbb7704d4790e95ca6b138189eca new file mode 100644 index 000000000..ffe58c21d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/01/0106fbb7704d4790e95ca6b138189eca differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/02/0214c54e8676aa2120bc45fe222cd1fb b/CMPUT 250 W24 Lab 3/Library/Artifacts/02/0214c54e8676aa2120bc45fe222cd1fb new file mode 100644 index 000000000..7621f83f8 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/02/0214c54e8676aa2120bc45fe222cd1fb differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/02/02febfb946eb51aa92d1ff5b4a37d7d1 b/CMPUT 250 W24 Lab 3/Library/Artifacts/02/02febfb946eb51aa92d1ff5b4a37d7d1 new file mode 100644 index 000000000..8db613d3c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/02/02febfb946eb51aa92d1ff5b4a37d7d1 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/03/03bc2ea6b64839dc03fb6dbcf4aed4e4 b/CMPUT 250 W24 Lab 3/Library/Artifacts/03/03bc2ea6b64839dc03fb6dbcf4aed4e4 new file mode 100644 index 000000000..6c67427e2 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/03/03bc2ea6b64839dc03fb6dbcf4aed4e4 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/05/058e4dfee9a432772db002c4f75e2726 b/CMPUT 250 W24 Lab 3/Library/Artifacts/05/058e4dfee9a432772db002c4f75e2726 new file mode 100644 index 000000000..ce232d1e3 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/05/058e4dfee9a432772db002c4f75e2726 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/06/06f109f4072333ae4cfc1569b6a39e53 b/CMPUT 250 W24 Lab 3/Library/Artifacts/06/06f109f4072333ae4cfc1569b6a39e53 new file mode 100644 index 000000000..96b885bb5 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/06/06f109f4072333ae4cfc1569b6a39e53 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/07/0735cec91b38089e6f5d29c8440beb61 b/CMPUT 250 W24 Lab 3/Library/Artifacts/07/0735cec91b38089e6f5d29c8440beb61 new file mode 100644 index 000000000..b07ec584d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/07/0735cec91b38089e6f5d29c8440beb61 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/08/083a331afb18c893c322336b2bc788eb b/CMPUT 250 W24 Lab 3/Library/Artifacts/08/083a331afb18c893c322336b2bc788eb new file mode 100644 index 000000000..2014977c6 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/08/083a331afb18c893c322336b2bc788eb differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/08/08a79e1a79a200b05940bbc43fc7ea97 b/CMPUT 250 W24 Lab 3/Library/Artifacts/08/08a79e1a79a200b05940bbc43fc7ea97 new file mode 100644 index 000000000..6c688bbbc Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/08/08a79e1a79a200b05940bbc43fc7ea97 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/08/08bd44cffc0b9d4bff5be4981f546dca b/CMPUT 250 W24 Lab 3/Library/Artifacts/08/08bd44cffc0b9d4bff5be4981f546dca new file mode 100644 index 000000000..e9b8e0edd Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/08/08bd44cffc0b9d4bff5be4981f546dca differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/09/09f295d9dd3a7bc80d92e1f771618e4e b/CMPUT 250 W24 Lab 3/Library/Artifacts/09/09f295d9dd3a7bc80d92e1f771618e4e new file mode 100644 index 000000000..5ac00111b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/09/09f295d9dd3a7bc80d92e1f771618e4e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/0b/0b947866f09057d3d44da0750723bd6d b/CMPUT 250 W24 Lab 3/Library/Artifacts/0b/0b947866f09057d3d44da0750723bd6d new file mode 100644 index 000000000..f6bd5af60 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/0b/0b947866f09057d3d44da0750723bd6d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/0b/0bad904d44565e0aefb1d5c937ada020 b/CMPUT 250 W24 Lab 3/Library/Artifacts/0b/0bad904d44565e0aefb1d5c937ada020 new file mode 100644 index 000000000..1efaf0eea Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/0b/0bad904d44565e0aefb1d5c937ada020 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0e17d0352900a79037ac5cd6dcf3d831 b/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0e17d0352900a79037ac5cd6dcf3d831 new file mode 100644 index 000000000..48a7fbf43 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0e17d0352900a79037ac5cd6dcf3d831 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0e3ba5a441d7965500f909c80ce5b334 b/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0e3ba5a441d7965500f909c80ce5b334 new file mode 100644 index 000000000..bf9824ebd Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0e3ba5a441d7965500f909c80ce5b334 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0e70766e0c7db070eb15f61ae437cbd4 b/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0e70766e0c7db070eb15f61ae437cbd4 new file mode 100644 index 000000000..e4bebdbc9 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0e70766e0c7db070eb15f61ae437cbd4 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0e8f4d30d76f0379980063943b23674c b/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0e8f4d30d76f0379980063943b23674c new file mode 100644 index 000000000..f99e56de5 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0e8f4d30d76f0379980063943b23674c differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0ef5d99b1e4483a74fac69ba676a5032 b/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0ef5d99b1e4483a74fac69ba676a5032 new file mode 100644 index 000000000..e29dd2611 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/0e/0ef5d99b1e4483a74fac69ba676a5032 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/10/1049df13ea34b9398f7ff2ea35a68a3d b/CMPUT 250 W24 Lab 3/Library/Artifacts/10/1049df13ea34b9398f7ff2ea35a68a3d new file mode 100644 index 000000000..928c315c8 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/10/1049df13ea34b9398f7ff2ea35a68a3d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/10/10c306d50e8ae65d96238b30172693cc b/CMPUT 250 W24 Lab 3/Library/Artifacts/10/10c306d50e8ae65d96238b30172693cc new file mode 100644 index 000000000..d6cc98804 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/10/10c306d50e8ae65d96238b30172693cc differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/11/113b7aed76224de8108a64a63a5375a1 b/CMPUT 250 W24 Lab 3/Library/Artifacts/11/113b7aed76224de8108a64a63a5375a1 new file mode 100644 index 000000000..c6ec8b4cc Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/11/113b7aed76224de8108a64a63a5375a1 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/12/125a2ce39a2f59c3dd62c096509c719c b/CMPUT 250 W24 Lab 3/Library/Artifacts/12/125a2ce39a2f59c3dd62c096509c719c new file mode 100644 index 000000000..0a8968158 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/12/125a2ce39a2f59c3dd62c096509c719c differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/12/12cb0302def04dd8c4dac434620de3e3 b/CMPUT 250 W24 Lab 3/Library/Artifacts/12/12cb0302def04dd8c4dac434620de3e3 new file mode 100644 index 000000000..7a23fe277 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/12/12cb0302def04dd8c4dac434620de3e3 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/12/12d3d713906a828666fd421eabbcf766 b/CMPUT 250 W24 Lab 3/Library/Artifacts/12/12d3d713906a828666fd421eabbcf766 new file mode 100644 index 000000000..85ffe60d9 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/12/12d3d713906a828666fd421eabbcf766 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/12/12dfa9a84efd38a46a796fdc30557320 b/CMPUT 250 W24 Lab 3/Library/Artifacts/12/12dfa9a84efd38a46a796fdc30557320 new file mode 100644 index 000000000..364317619 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/12/12dfa9a84efd38a46a796fdc30557320 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/12/12e2ab6a0c5b6e1f45a0957793a3eba9 b/CMPUT 250 W24 Lab 3/Library/Artifacts/12/12e2ab6a0c5b6e1f45a0957793a3eba9 new file mode 100644 index 000000000..e11888e3d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/12/12e2ab6a0c5b6e1f45a0957793a3eba9 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/13/138190f0dfb5738f3ca71afc47779b9f b/CMPUT 250 W24 Lab 3/Library/Artifacts/13/138190f0dfb5738f3ca71afc47779b9f new file mode 100644 index 000000000..cf58e4fb9 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/13/138190f0dfb5738f3ca71afc47779b9f differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/13/13ac19c4d8b86c906a4abcd083e1f026 b/CMPUT 250 W24 Lab 3/Library/Artifacts/13/13ac19c4d8b86c906a4abcd083e1f026 new file mode 100644 index 000000000..251f200cf Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/13/13ac19c4d8b86c906a4abcd083e1f026 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/14/142ae78fd3ce611fe2379ce4a4a5dff4 b/CMPUT 250 W24 Lab 3/Library/Artifacts/14/142ae78fd3ce611fe2379ce4a4a5dff4 new file mode 100644 index 000000000..80dc077fa Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/14/142ae78fd3ce611fe2379ce4a4a5dff4 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/15/15754a275e774e7d3e8f8e93ea265ada b/CMPUT 250 W24 Lab 3/Library/Artifacts/15/15754a275e774e7d3e8f8e93ea265ada new file mode 100644 index 000000000..bf8b9479d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/15/15754a275e774e7d3e8f8e93ea265ada differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/15/158b6e3e9e17e12e07d3a04cc868498c b/CMPUT 250 W24 Lab 3/Library/Artifacts/15/158b6e3e9e17e12e07d3a04cc868498c new file mode 100644 index 000000000..aba3c165a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/15/158b6e3e9e17e12e07d3a04cc868498c differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/15/15fb24937ce3191e2d9cb44b3b5eccdc b/CMPUT 250 W24 Lab 3/Library/Artifacts/15/15fb24937ce3191e2d9cb44b3b5eccdc new file mode 100644 index 000000000..f1110bac7 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/15/15fb24937ce3191e2d9cb44b3b5eccdc differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/16/168a0e8a0a0c90c42f586f17cea29bed b/CMPUT 250 W24 Lab 3/Library/Artifacts/16/168a0e8a0a0c90c42f586f17cea29bed deleted file mode 100644 index 7614169e0..000000000 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/16/168a0e8a0a0c90c42f586f17cea29bed and /dev/null differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/17/176c8bee39db49ed6ecf4283ac9a8410 b/CMPUT 250 W24 Lab 3/Library/Artifacts/17/176c8bee39db49ed6ecf4283ac9a8410 new file mode 100644 index 000000000..a327d5d39 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/17/176c8bee39db49ed6ecf4283ac9a8410 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/18/1872bd59717a1e72221c67e9e1c5f672 b/CMPUT 250 W24 Lab 3/Library/Artifacts/18/1872bd59717a1e72221c67e9e1c5f672 new file mode 100644 index 000000000..93630b0a2 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/18/1872bd59717a1e72221c67e9e1c5f672 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/18/18f47754352b8ccf1fe85b39c50308e0 b/CMPUT 250 W24 Lab 3/Library/Artifacts/18/18f47754352b8ccf1fe85b39c50308e0 new file mode 100644 index 000000000..c9176a610 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/18/18f47754352b8ccf1fe85b39c50308e0 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/19/1940523ad12ea2398a9edb2af044a56d b/CMPUT 250 W24 Lab 3/Library/Artifacts/19/1940523ad12ea2398a9edb2af044a56d new file mode 100644 index 000000000..1d3d00d56 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/19/1940523ad12ea2398a9edb2af044a56d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1a1e22ddc017eac7f3de9db18d5be977 b/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1a1e22ddc017eac7f3de9db18d5be977 new file mode 100644 index 000000000..25a70d994 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1a1e22ddc017eac7f3de9db18d5be977 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1a32b8f234c5a49a978200013c5cfee4 b/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1a32b8f234c5a49a978200013c5cfee4 new file mode 100644 index 000000000..9178ffe60 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1a32b8f234c5a49a978200013c5cfee4 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1a548f0a2a72c12b7e98d4cd5e476db8 b/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1a548f0a2a72c12b7e98d4cd5e476db8 new file mode 100644 index 000000000..7d5488776 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1a548f0a2a72c12b7e98d4cd5e476db8 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1a7a3530d413a8b342c5cdd45ed5b30d b/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1a7a3530d413a8b342c5cdd45ed5b30d new file mode 100644 index 000000000..36b54f703 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1a7a3530d413a8b342c5cdd45ed5b30d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1af25e03b234a7115d420d466f68c9eb b/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1af25e03b234a7115d420d466f68c9eb new file mode 100644 index 000000000..e37317fd5 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/1a/1af25e03b234a7115d420d466f68c9eb differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/1c/1ca5b5b3086497a43a8cc551f2bff52b b/CMPUT 250 W24 Lab 3/Library/Artifacts/1c/1ca5b5b3086497a43a8cc551f2bff52b new file mode 100644 index 000000000..18310246f Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/1c/1ca5b5b3086497a43a8cc551f2bff52b differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/1d/1d8617856a4b5e5cca87c3c749b67fdc b/CMPUT 250 W24 Lab 3/Library/Artifacts/1d/1d8617856a4b5e5cca87c3c749b67fdc new file mode 100644 index 000000000..33a96f514 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/1d/1d8617856a4b5e5cca87c3c749b67fdc differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/1e/1e0c4bfb78d95985df29e698c053505f b/CMPUT 250 W24 Lab 3/Library/Artifacts/1e/1e0c4bfb78d95985df29e698c053505f new file mode 100644 index 000000000..2a79dde4a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/1e/1e0c4bfb78d95985df29e698c053505f differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/1e/1e4e2080fab98c91d8665efd415b8f43 b/CMPUT 250 W24 Lab 3/Library/Artifacts/1e/1e4e2080fab98c91d8665efd415b8f43 new file mode 100644 index 000000000..fe4a9edcb Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/1e/1e4e2080fab98c91d8665efd415b8f43 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/1e/1ee9d4780efbfea74a80e6a78b19437d b/CMPUT 250 W24 Lab 3/Library/Artifacts/1e/1ee9d4780efbfea74a80e6a78b19437d new file mode 100644 index 000000000..e64a328c2 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/1e/1ee9d4780efbfea74a80e6a78b19437d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/1f/1fb0afbab9c95d65b510d2e7e404c95a b/CMPUT 250 W24 Lab 3/Library/Artifacts/1f/1fb0afbab9c95d65b510d2e7e404c95a new file mode 100644 index 000000000..3e8dea049 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/1f/1fb0afbab9c95d65b510d2e7e404c95a differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/21/2169f97ff2fcb42f98e13bb362b38f13 b/CMPUT 250 W24 Lab 3/Library/Artifacts/21/2169f97ff2fcb42f98e13bb362b38f13 new file mode 100644 index 000000000..1a52a31bf Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/21/2169f97ff2fcb42f98e13bb362b38f13 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/24/244656a81f4f01622945032db1f39815 b/CMPUT 250 W24 Lab 3/Library/Artifacts/24/244656a81f4f01622945032db1f39815 new file mode 100644 index 000000000..b55726b09 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/24/244656a81f4f01622945032db1f39815 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/24/24addd7f9f52151033c4083d24e408a7 b/CMPUT 250 W24 Lab 3/Library/Artifacts/24/24addd7f9f52151033c4083d24e408a7 new file mode 100644 index 000000000..e89e5ea3e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/24/24addd7f9f52151033c4083d24e408a7 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/27/274c6fd305edb92db0aeb93526c827c8 b/CMPUT 250 W24 Lab 3/Library/Artifacts/27/274c6fd305edb92db0aeb93526c827c8 new file mode 100644 index 000000000..7af226871 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/27/274c6fd305edb92db0aeb93526c827c8 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/27/27d9c5f9218f7632c56a706c041a7288 b/CMPUT 250 W24 Lab 3/Library/Artifacts/27/27d9c5f9218f7632c56a706c041a7288 new file mode 100644 index 000000000..f5360bb73 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/27/27d9c5f9218f7632c56a706c041a7288 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/28/280037f6d569ec757e6ab150d390ea41 b/CMPUT 250 W24 Lab 3/Library/Artifacts/28/280037f6d569ec757e6ab150d390ea41 new file mode 100644 index 000000000..bc621ee30 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/28/280037f6d569ec757e6ab150d390ea41 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/28/287422fcf587e941231b68d8f47f8c38 b/CMPUT 250 W24 Lab 3/Library/Artifacts/28/287422fcf587e941231b68d8f47f8c38 new file mode 100644 index 000000000..cf6a98b9e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/28/287422fcf587e941231b68d8f47f8c38 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/28/28840635176c276d38a816e6084e6887 b/CMPUT 250 W24 Lab 3/Library/Artifacts/28/28840635176c276d38a816e6084e6887 new file mode 100644 index 000000000..b4559bb62 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/28/28840635176c276d38a816e6084e6887 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/2a/2a31a78ee109ad4359649e8fedd1fd1d b/CMPUT 250 W24 Lab 3/Library/Artifacts/2a/2a31a78ee109ad4359649e8fedd1fd1d new file mode 100644 index 000000000..0f18b96cd Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/2a/2a31a78ee109ad4359649e8fedd1fd1d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/2a/2af42f044c1ebcc66ae697fe39b9c69e b/CMPUT 250 W24 Lab 3/Library/Artifacts/2a/2af42f044c1ebcc66ae697fe39b9c69e new file mode 100644 index 000000000..93476d559 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/2a/2af42f044c1ebcc66ae697fe39b9c69e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/2b/2b90675d3f8015f071cd11c7bc806c29 b/CMPUT 250 W24 Lab 3/Library/Artifacts/2b/2b90675d3f8015f071cd11c7bc806c29 new file mode 100644 index 000000000..01871c0f7 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/2b/2b90675d3f8015f071cd11c7bc806c29 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/2e/2ef338aefee1ebf6a9046ecdb16fd206 b/CMPUT 250 W24 Lab 3/Library/Artifacts/2e/2ef338aefee1ebf6a9046ecdb16fd206 new file mode 100644 index 000000000..da66c9c84 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/2e/2ef338aefee1ebf6a9046ecdb16fd206 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/2f/2f6e8a90f7bffab4e60d0fff4ba552ec b/CMPUT 250 W24 Lab 3/Library/Artifacts/2f/2f6e8a90f7bffab4e60d0fff4ba552ec new file mode 100644 index 000000000..93247eb93 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/2f/2f6e8a90f7bffab4e60d0fff4ba552ec differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/2f/2fdb3f33875a1c1aa957fdfbdb032f57 b/CMPUT 250 W24 Lab 3/Library/Artifacts/2f/2fdb3f33875a1c1aa957fdfbdb032f57 new file mode 100644 index 000000000..3dd3161f6 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/2f/2fdb3f33875a1c1aa957fdfbdb032f57 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/30/306419645e45c0ebb3f5ba9699531c83 b/CMPUT 250 W24 Lab 3/Library/Artifacts/30/306419645e45c0ebb3f5ba9699531c83 new file mode 100644 index 000000000..8686daaa4 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/30/306419645e45c0ebb3f5ba9699531c83 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/31/31af3fd498cc2a1e02d39ffe63924ade b/CMPUT 250 W24 Lab 3/Library/Artifacts/31/31af3fd498cc2a1e02d39ffe63924ade new file mode 100644 index 000000000..26040e3cb Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/31/31af3fd498cc2a1e02d39ffe63924ade differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/32/32013f36d41b66fde86f74675a24d5f9 b/CMPUT 250 W24 Lab 3/Library/Artifacts/32/32013f36d41b66fde86f74675a24d5f9 new file mode 100644 index 000000000..848aa2aee Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/32/32013f36d41b66fde86f74675a24d5f9 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/32/320d524a2c7aef5bc2dc8a995ad62132 b/CMPUT 250 W24 Lab 3/Library/Artifacts/32/320d524a2c7aef5bc2dc8a995ad62132 new file mode 100644 index 000000000..a6aa4787d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/32/320d524a2c7aef5bc2dc8a995ad62132 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/32/32d59ac2bc9738ce230f52d5f226f97e b/CMPUT 250 W24 Lab 3/Library/Artifacts/32/32d59ac2bc9738ce230f52d5f226f97e new file mode 100644 index 000000000..0f0a48548 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/32/32d59ac2bc9738ce230f52d5f226f97e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/33/333175ffd16d9450665ed664deca1f09 b/CMPUT 250 W24 Lab 3/Library/Artifacts/33/333175ffd16d9450665ed664deca1f09 new file mode 100644 index 000000000..cdb90f11a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/33/333175ffd16d9450665ed664deca1f09 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/34/34ec545a683a32d10f8d59dbe6221b22 b/CMPUT 250 W24 Lab 3/Library/Artifacts/34/34ec545a683a32d10f8d59dbe6221b22 new file mode 100644 index 000000000..46becc458 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/34/34ec545a683a32d10f8d59dbe6221b22 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/35/35340a9ab425813a2a0079deb9b6dbd0 b/CMPUT 250 W24 Lab 3/Library/Artifacts/35/35340a9ab425813a2a0079deb9b6dbd0 new file mode 100644 index 000000000..5684bac85 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/35/35340a9ab425813a2a0079deb9b6dbd0 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/35/35fa94f47974e7e6ca4f5cf34ffdaf93 b/CMPUT 250 W24 Lab 3/Library/Artifacts/35/35fa94f47974e7e6ca4f5cf34ffdaf93 new file mode 100644 index 000000000..fe2c8792a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/35/35fa94f47974e7e6ca4f5cf34ffdaf93 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/36/360294855554dccb19ef75b6da9b3c43 b/CMPUT 250 W24 Lab 3/Library/Artifacts/36/360294855554dccb19ef75b6da9b3c43 new file mode 100644 index 000000000..8351b659c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/36/360294855554dccb19ef75b6da9b3c43 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/37/374d8559b4d580f33675deef2ad3dd22 b/CMPUT 250 W24 Lab 3/Library/Artifacts/37/374d8559b4d580f33675deef2ad3dd22 new file mode 100644 index 000000000..b47f995fc Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/37/374d8559b4d580f33675deef2ad3dd22 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/38/385b2a106f824a0478a220a136955f22 b/CMPUT 250 W24 Lab 3/Library/Artifacts/38/385b2a106f824a0478a220a136955f22 new file mode 100644 index 000000000..30a5b534f Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/38/385b2a106f824a0478a220a136955f22 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/38/38ec97a903192be9d0d5c1d355cef86f b/CMPUT 250 W24 Lab 3/Library/Artifacts/38/38ec97a903192be9d0d5c1d355cef86f new file mode 100644 index 000000000..c11acffde Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/38/38ec97a903192be9d0d5c1d355cef86f differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/39/3932d03e2f5777237350db8696f72f44 b/CMPUT 250 W24 Lab 3/Library/Artifacts/39/3932d03e2f5777237350db8696f72f44 new file mode 100644 index 000000000..781bca365 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/39/3932d03e2f5777237350db8696f72f44 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/39/39e2b2446714b00f113efc43378d5547 b/CMPUT 250 W24 Lab 3/Library/Artifacts/39/39e2b2446714b00f113efc43378d5547 new file mode 100644 index 000000000..cabde589a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/39/39e2b2446714b00f113efc43378d5547 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/3a/3ac6dfb8a6261e8650b6dd95db26cdd9 b/CMPUT 250 W24 Lab 3/Library/Artifacts/3a/3ac6dfb8a6261e8650b6dd95db26cdd9 new file mode 100644 index 000000000..d2a6dffa9 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/3a/3ac6dfb8a6261e8650b6dd95db26cdd9 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/3c/3c20dd001a493a73da188ee8f6c17ae9 b/CMPUT 250 W24 Lab 3/Library/Artifacts/3c/3c20dd001a493a73da188ee8f6c17ae9 new file mode 100644 index 000000000..cb19be483 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/3c/3c20dd001a493a73da188ee8f6c17ae9 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/3d/3dcc45f969b242e6695f9ad544aed94a b/CMPUT 250 W24 Lab 3/Library/Artifacts/3d/3dcc45f969b242e6695f9ad544aed94a new file mode 100644 index 000000000..ef4444c5d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/3d/3dcc45f969b242e6695f9ad544aed94a differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/3e/3e3f84d04fb87b12ce04958672245c54 b/CMPUT 250 W24 Lab 3/Library/Artifacts/3e/3e3f84d04fb87b12ce04958672245c54 new file mode 100644 index 000000000..18461f90e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/3e/3e3f84d04fb87b12ce04958672245c54 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/3e/3e7f8bfe50e158bbe0e3be9a7aa2a617 b/CMPUT 250 W24 Lab 3/Library/Artifacts/3e/3e7f8bfe50e158bbe0e3be9a7aa2a617 new file mode 100644 index 000000000..5802907bc Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/3e/3e7f8bfe50e158bbe0e3be9a7aa2a617 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/40/40cb9ea3ad0e6ef45d62d117b1e3f9cb b/CMPUT 250 W24 Lab 3/Library/Artifacts/40/40cb9ea3ad0e6ef45d62d117b1e3f9cb new file mode 100644 index 000000000..203a10b3a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/40/40cb9ea3ad0e6ef45d62d117b1e3f9cb differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/41/41e8851a5409286810485e7c886929e1 b/CMPUT 250 W24 Lab 3/Library/Artifacts/41/41e8851a5409286810485e7c886929e1 new file mode 100644 index 000000000..0f8d41d7a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/41/41e8851a5409286810485e7c886929e1 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/43/432a463c723be46024c6d09550589785 b/CMPUT 250 W24 Lab 3/Library/Artifacts/43/432a463c723be46024c6d09550589785 new file mode 100644 index 000000000..d1da41aa2 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/43/432a463c723be46024c6d09550589785 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/43/435a7bef1bc79ac91e5c1803bc8b7082 b/CMPUT 250 W24 Lab 3/Library/Artifacts/43/435a7bef1bc79ac91e5c1803bc8b7082 new file mode 100644 index 000000000..c60f61e0c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/43/435a7bef1bc79ac91e5c1803bc8b7082 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/44/4448b857d48206982427b7c74d629126 b/CMPUT 250 W24 Lab 3/Library/Artifacts/44/4448b857d48206982427b7c74d629126 new file mode 100644 index 000000000..59757c6c0 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/44/4448b857d48206982427b7c74d629126 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/44/44e655967f833fe83852843f20ebd8e6 b/CMPUT 250 W24 Lab 3/Library/Artifacts/44/44e655967f833fe83852843f20ebd8e6 new file mode 100644 index 000000000..ca4aeb2b9 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/44/44e655967f833fe83852843f20ebd8e6 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/44/44fb830a8978a99c221976adaa73ffbe b/CMPUT 250 W24 Lab 3/Library/Artifacts/44/44fb830a8978a99c221976adaa73ffbe new file mode 100644 index 000000000..4debcf772 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/44/44fb830a8978a99c221976adaa73ffbe differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/66/66eae3044343eb392c4379a1cc363673 b/CMPUT 250 W24 Lab 3/Library/Artifacts/45/45b1b929e480bc76f7759566079078c8 similarity index 66% rename from CMPUT 250 W24 Lab 3/Library/Artifacts/66/66eae3044343eb392c4379a1cc363673 rename to CMPUT 250 W24 Lab 3/Library/Artifacts/45/45b1b929e480bc76f7759566079078c8 index 00d69a7fc..c0042d402 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/66/66eae3044343eb392c4379a1cc363673 and b/CMPUT 250 W24 Lab 3/Library/Artifacts/45/45b1b929e480bc76f7759566079078c8 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/46/46f10feeeb9dcc19b3437b9a765501f7 b/CMPUT 250 W24 Lab 3/Library/Artifacts/46/46f10feeeb9dcc19b3437b9a765501f7 new file mode 100644 index 000000000..e1303a4c1 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/46/46f10feeeb9dcc19b3437b9a765501f7 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/47/4708f0af7c336dedb9d4e2c7ea3c712c b/CMPUT 250 W24 Lab 3/Library/Artifacts/47/4708f0af7c336dedb9d4e2c7ea3c712c new file mode 100644 index 000000000..c04c9864b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/47/4708f0af7c336dedb9d4e2c7ea3c712c differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/48/4898be7801fdcac7ecfb96dc72d5a331 b/CMPUT 250 W24 Lab 3/Library/Artifacts/48/4898be7801fdcac7ecfb96dc72d5a331 new file mode 100644 index 000000000..cabfc5e4d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/48/4898be7801fdcac7ecfb96dc72d5a331 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/4c/4c32c6bbcb461331967aa1c607b3ebb1 b/CMPUT 250 W24 Lab 3/Library/Artifacts/4c/4c32c6bbcb461331967aa1c607b3ebb1 new file mode 100644 index 000000000..7bdce1fa1 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/4c/4c32c6bbcb461331967aa1c607b3ebb1 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/4c/4c3cccf59f28af98d94fb0ff3d2cbf9d b/CMPUT 250 W24 Lab 3/Library/Artifacts/4c/4c3cccf59f28af98d94fb0ff3d2cbf9d new file mode 100644 index 000000000..532a54cac Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/4c/4c3cccf59f28af98d94fb0ff3d2cbf9d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/4e/4e3c7f51744d91a1356a42cca21c3dac b/CMPUT 250 W24 Lab 3/Library/Artifacts/4e/4e3c7f51744d91a1356a42cca21c3dac new file mode 100644 index 000000000..517ba158a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/4e/4e3c7f51744d91a1356a42cca21c3dac differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/4f/4f90829e093b4482743f3092667f85c4 b/CMPUT 250 W24 Lab 3/Library/Artifacts/4f/4f90829e093b4482743f3092667f85c4 new file mode 100644 index 000000000..fd848824b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/4f/4f90829e093b4482743f3092667f85c4 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/4f/4f97106a2ef5c1165a97973ec9e7213b b/CMPUT 250 W24 Lab 3/Library/Artifacts/4f/4f97106a2ef5c1165a97973ec9e7213b new file mode 100644 index 000000000..a5f1cc459 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/4f/4f97106a2ef5c1165a97973ec9e7213b differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/51/51e0aae9a5b80ed5bd4d238d0b353e5d b/CMPUT 250 W24 Lab 3/Library/Artifacts/51/51e0aae9a5b80ed5bd4d238d0b353e5d new file mode 100644 index 000000000..fff18d37f Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/51/51e0aae9a5b80ed5bd4d238d0b353e5d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/53/531bfbf70daca46055bcd68957ef90b0 b/CMPUT 250 W24 Lab 3/Library/Artifacts/53/531bfbf70daca46055bcd68957ef90b0 new file mode 100644 index 000000000..1b7809fb4 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/53/531bfbf70daca46055bcd68957ef90b0 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/53/5368191b73bc254cd200c768caec484d b/CMPUT 250 W24 Lab 3/Library/Artifacts/53/5368191b73bc254cd200c768caec484d new file mode 100644 index 000000000..51379b864 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/53/5368191b73bc254cd200c768caec484d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/53/53f48ab1df88862506df1fa405e12fe2 b/CMPUT 250 W24 Lab 3/Library/Artifacts/53/53f48ab1df88862506df1fa405e12fe2 new file mode 100644 index 000000000..881845de9 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/53/53f48ab1df88862506df1fa405e12fe2 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/55/55bdc0f365426c3180ec12ed385f4a37 b/CMPUT 250 W24 Lab 3/Library/Artifacts/55/55bdc0f365426c3180ec12ed385f4a37 new file mode 100644 index 000000000..f4e46b626 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/55/55bdc0f365426c3180ec12ed385f4a37 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/56/562f51c06bdcd9b99ada1be05fa266d5 b/CMPUT 250 W24 Lab 3/Library/Artifacts/56/562f51c06bdcd9b99ada1be05fa266d5 new file mode 100644 index 000000000..93646f779 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/56/562f51c06bdcd9b99ada1be05fa266d5 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/56/56cf5e6c45f08d9d664536686b05e550 b/CMPUT 250 W24 Lab 3/Library/Artifacts/56/56cf5e6c45f08d9d664536686b05e550 new file mode 100644 index 000000000..eb126c7a2 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/56/56cf5e6c45f08d9d664536686b05e550 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/57/57177cd5fcfc87eebe40ad7613ac1910 b/CMPUT 250 W24 Lab 3/Library/Artifacts/57/57177cd5fcfc87eebe40ad7613ac1910 new file mode 100644 index 000000000..4c6cc556b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/57/57177cd5fcfc87eebe40ad7613ac1910 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/57/57b58eaba14cd58ab96f70b7f6592a17 b/CMPUT 250 W24 Lab 3/Library/Artifacts/57/57b58eaba14cd58ab96f70b7f6592a17 new file mode 100644 index 000000000..2ae913e65 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/57/57b58eaba14cd58ab96f70b7f6592a17 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/59/5934a5e3244035ab1f8f7a6f95dedd41 b/CMPUT 250 W24 Lab 3/Library/Artifacts/59/5934a5e3244035ab1f8f7a6f95dedd41 new file mode 100644 index 000000000..0a4bbddac Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/59/5934a5e3244035ab1f8f7a6f95dedd41 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/5a/5a802c75b4c03e630aa16b3256120b3e b/CMPUT 250 W24 Lab 3/Library/Artifacts/5a/5a802c75b4c03e630aa16b3256120b3e new file mode 100644 index 000000000..9c82c1c6e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/5a/5a802c75b4c03e630aa16b3256120b3e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/5b/5b9bd52535ef4a10ef4736192d4f7985 b/CMPUT 250 W24 Lab 3/Library/Artifacts/5b/5b9bd52535ef4a10ef4736192d4f7985 new file mode 100644 index 000000000..11ec9e58e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/5b/5b9bd52535ef4a10ef4736192d4f7985 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/5c/5c06333ef93e82faf7737766602d16e8 b/CMPUT 250 W24 Lab 3/Library/Artifacts/5c/5c06333ef93e82faf7737766602d16e8 new file mode 100644 index 000000000..5a73b06b4 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/5c/5c06333ef93e82faf7737766602d16e8 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/5d/5d6fd5cd0e32c772bad719cd262ed937 b/CMPUT 250 W24 Lab 3/Library/Artifacts/5d/5d6fd5cd0e32c772bad719cd262ed937 deleted file mode 100644 index fc92fdce1..000000000 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/5d/5d6fd5cd0e32c772bad719cd262ed937 and /dev/null differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/5d/5d771e99d3388486171d76b76e703763 b/CMPUT 250 W24 Lab 3/Library/Artifacts/5d/5d771e99d3388486171d76b76e703763 new file mode 100644 index 000000000..92b9e58fd Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/5d/5d771e99d3388486171d76b76e703763 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/5e/5e3d295435136a93ad5aa64dea8894d4 b/CMPUT 250 W24 Lab 3/Library/Artifacts/5e/5e3d295435136a93ad5aa64dea8894d4 new file mode 100644 index 000000000..e6ee39cc9 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/5e/5e3d295435136a93ad5aa64dea8894d4 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/5f/5f9863975ee20750f9b534a33edfdbed b/CMPUT 250 W24 Lab 3/Library/Artifacts/5f/5f9863975ee20750f9b534a33edfdbed new file mode 100644 index 000000000..19ffa40d2 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/5f/5f9863975ee20750f9b534a33edfdbed differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/60/60c6b3549919f4d82734f8cda996f636 b/CMPUT 250 W24 Lab 3/Library/Artifacts/60/60c6b3549919f4d82734f8cda996f636 new file mode 100644 index 000000000..4635ddb12 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/60/60c6b3549919f4d82734f8cda996f636 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/62/6204c2f5e16514353975e020a7aec05b b/CMPUT 250 W24 Lab 3/Library/Artifacts/62/6204c2f5e16514353975e020a7aec05b new file mode 100644 index 000000000..9053c57aa Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/62/6204c2f5e16514353975e020a7aec05b differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/62/62a6775a2f3f90f97c52ce1841f22132 b/CMPUT 250 W24 Lab 3/Library/Artifacts/62/62a6775a2f3f90f97c52ce1841f22132 new file mode 100644 index 000000000..8828124ee Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/62/62a6775a2f3f90f97c52ce1841f22132 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/62/62cc9337ba4eac9f29288973df55a826 b/CMPUT 250 W24 Lab 3/Library/Artifacts/62/62cc9337ba4eac9f29288973df55a826 new file mode 100644 index 000000000..8a576492b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/62/62cc9337ba4eac9f29288973df55a826 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/63/63b046f5d0c3c2911cfbf3d408851036 b/CMPUT 250 W24 Lab 3/Library/Artifacts/63/63b046f5d0c3c2911cfbf3d408851036 new file mode 100644 index 000000000..a50cfc943 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/63/63b046f5d0c3c2911cfbf3d408851036 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/65/65a39b49f20a7f6e2879d0136a2657c6 b/CMPUT 250 W24 Lab 3/Library/Artifacts/65/65a39b49f20a7f6e2879d0136a2657c6 new file mode 100644 index 000000000..be68be9ad Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/65/65a39b49f20a7f6e2879d0136a2657c6 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/66/6654b42855be1f60d736d0e0f33353bd b/CMPUT 250 W24 Lab 3/Library/Artifacts/66/6654b42855be1f60d736d0e0f33353bd new file mode 100644 index 000000000..62c212728 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/66/6654b42855be1f60d736d0e0f33353bd differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f750e82374aa24af6c8ab9c6adc07740 b/CMPUT 250 W24 Lab 3/Library/Artifacts/67/67e24cd3380d2bf2f8500e078f0740b7 similarity index 72% rename from CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f750e82374aa24af6c8ab9c6adc07740 rename to CMPUT 250 W24 Lab 3/Library/Artifacts/67/67e24cd3380d2bf2f8500e078f0740b7 index fd988326a..48d5b233c 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f750e82374aa24af6c8ab9c6adc07740 and b/CMPUT 250 W24 Lab 3/Library/Artifacts/67/67e24cd3380d2bf2f8500e078f0740b7 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/69/690b50a1a361d822b345903069eb7693 b/CMPUT 250 W24 Lab 3/Library/Artifacts/69/690b50a1a361d822b345903069eb7693 new file mode 100644 index 000000000..866e96902 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/69/690b50a1a361d822b345903069eb7693 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/69/694e90be7baae84e860544282216bb59 b/CMPUT 250 W24 Lab 3/Library/Artifacts/69/694e90be7baae84e860544282216bb59 new file mode 100644 index 000000000..27b1b7c6a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/69/694e90be7baae84e860544282216bb59 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/6b/6b130553d8f336a6df0a0c958b25ff18 b/CMPUT 250 W24 Lab 3/Library/Artifacts/6b/6b130553d8f336a6df0a0c958b25ff18 new file mode 100644 index 000000000..35ff2a12d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/6b/6b130553d8f336a6df0a0c958b25ff18 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/6b/6b1f5ce49903f671690bf178979c5c85 b/CMPUT 250 W24 Lab 3/Library/Artifacts/6b/6b1f5ce49903f671690bf178979c5c85 new file mode 100644 index 000000000..6df16086f Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/6b/6b1f5ce49903f671690bf178979c5c85 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/6b/6b6e0bfcf3b3d7a540e2df551d9b89f0 b/CMPUT 250 W24 Lab 3/Library/Artifacts/6b/6b6e0bfcf3b3d7a540e2df551d9b89f0 new file mode 100644 index 000000000..44333a492 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/6b/6b6e0bfcf3b3d7a540e2df551d9b89f0 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/6b/6bf3d2d3d0eb41a55389d016e3f15fbc b/CMPUT 250 W24 Lab 3/Library/Artifacts/6b/6bf3d2d3d0eb41a55389d016e3f15fbc new file mode 100644 index 000000000..8825cc631 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/6b/6bf3d2d3d0eb41a55389d016e3f15fbc differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/6d/6d1098e77e940b8bbefcb46211afd809 b/CMPUT 250 W24 Lab 3/Library/Artifacts/6d/6d1098e77e940b8bbefcb46211afd809 new file mode 100644 index 000000000..ae24314da Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/6d/6d1098e77e940b8bbefcb46211afd809 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/6d/6d8461d91ea9cc9c55328b860faab312 b/CMPUT 250 W24 Lab 3/Library/Artifacts/6d/6d8461d91ea9cc9c55328b860faab312 new file mode 100644 index 000000000..579e82257 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/6d/6d8461d91ea9cc9c55328b860faab312 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/6e/6e8a013ea0f4b1fdcab7f7926e481149 b/CMPUT 250 W24 Lab 3/Library/Artifacts/6e/6e8a013ea0f4b1fdcab7f7926e481149 new file mode 100644 index 000000000..9ea73292e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/6e/6e8a013ea0f4b1fdcab7f7926e481149 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/6f/6f3801a7a715c081eb0d188398c6d599 b/CMPUT 250 W24 Lab 3/Library/Artifacts/6f/6f3801a7a715c081eb0d188398c6d599 new file mode 100644 index 000000000..22f9dd160 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/6f/6f3801a7a715c081eb0d188398c6d599 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/6f/6f3819659cb51128f2edd8820407ae1e b/CMPUT 250 W24 Lab 3/Library/Artifacts/6f/6f3819659cb51128f2edd8820407ae1e new file mode 100644 index 000000000..71889e37e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/6f/6f3819659cb51128f2edd8820407ae1e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/6f/6fe88a9be30811ecb1f4e2eea0d2f324 b/CMPUT 250 W24 Lab 3/Library/Artifacts/6f/6fe88a9be30811ecb1f4e2eea0d2f324 new file mode 100644 index 000000000..36f140067 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/6f/6fe88a9be30811ecb1f4e2eea0d2f324 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/70/70a53d698918edcbaa108c2268981b10 b/CMPUT 250 W24 Lab 3/Library/Artifacts/70/70a53d698918edcbaa108c2268981b10 new file mode 100644 index 000000000..ecd509d77 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/70/70a53d698918edcbaa108c2268981b10 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/70/70fbe5e4777041ff2f805e7dad7b130b b/CMPUT 250 W24 Lab 3/Library/Artifacts/70/70fbe5e4777041ff2f805e7dad7b130b new file mode 100644 index 000000000..792ce498b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/70/70fbe5e4777041ff2f805e7dad7b130b differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/71/71273c05ae9fcb6da340ce7ff65d046e b/CMPUT 250 W24 Lab 3/Library/Artifacts/71/71273c05ae9fcb6da340ce7ff65d046e new file mode 100644 index 000000000..123d84d08 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/71/71273c05ae9fcb6da340ce7ff65d046e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/72/72670b89321da08b4be3f3263c9ee9ba b/CMPUT 250 W24 Lab 3/Library/Artifacts/72/72670b89321da08b4be3f3263c9ee9ba new file mode 100644 index 000000000..b16a19c02 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/72/72670b89321da08b4be3f3263c9ee9ba differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/72/728791c4f6c1f7df87a507c6be5bb184 b/CMPUT 250 W24 Lab 3/Library/Artifacts/72/728791c4f6c1f7df87a507c6be5bb184 new file mode 100644 index 000000000..96188b9d8 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/72/728791c4f6c1f7df87a507c6be5bb184 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/73/73a84d2cda002e5f1f52f555f82193ac b/CMPUT 250 W24 Lab 3/Library/Artifacts/73/73a84d2cda002e5f1f52f555f82193ac new file mode 100644 index 000000000..5cc14e41d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/73/73a84d2cda002e5f1f52f555f82193ac differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/74/743a2c85cd3490579dbcdf35aa8a13a2 b/CMPUT 250 W24 Lab 3/Library/Artifacts/74/743a2c85cd3490579dbcdf35aa8a13a2 new file mode 100644 index 000000000..773a46708 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/74/743a2c85cd3490579dbcdf35aa8a13a2 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/74/74627ee8eb8ee844ac68fbd4efe46058 b/CMPUT 250 W24 Lab 3/Library/Artifacts/74/74627ee8eb8ee844ac68fbd4efe46058 new file mode 100644 index 000000000..64d9a5774 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/74/74627ee8eb8ee844ac68fbd4efe46058 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/76/76cb45b6b66c63731cb0f6c474225770 b/CMPUT 250 W24 Lab 3/Library/Artifacts/76/76cb45b6b66c63731cb0f6c474225770 new file mode 100644 index 000000000..cc047a19b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/76/76cb45b6b66c63731cb0f6c474225770 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/76/76f1693f2b761dd976a53c5034c77c68 b/CMPUT 250 W24 Lab 3/Library/Artifacts/76/76f1693f2b761dd976a53c5034c77c68 new file mode 100644 index 000000000..4d2c16663 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/76/76f1693f2b761dd976a53c5034c77c68 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/77/774cdc2e9f73b5c500fe1d7bea243f9d b/CMPUT 250 W24 Lab 3/Library/Artifacts/77/774cdc2e9f73b5c500fe1d7bea243f9d new file mode 100644 index 000000000..6b11b6ee2 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/77/774cdc2e9f73b5c500fe1d7bea243f9d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/77/77e795fe0ca07f5ebc7ff3bf330305b9 b/CMPUT 250 W24 Lab 3/Library/Artifacts/77/77e795fe0ca07f5ebc7ff3bf330305b9 new file mode 100644 index 000000000..698a7e13c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/77/77e795fe0ca07f5ebc7ff3bf330305b9 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/79/79b24a632949eecdaab133ca39b188d4 b/CMPUT 250 W24 Lab 3/Library/Artifacts/79/79b24a632949eecdaab133ca39b188d4 new file mode 100644 index 000000000..499a0d6fa Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/79/79b24a632949eecdaab133ca39b188d4 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/79/79d49ffc63677a53338b87278b677ac3 b/CMPUT 250 W24 Lab 3/Library/Artifacts/79/79d49ffc63677a53338b87278b677ac3 new file mode 100644 index 000000000..491328c21 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/79/79d49ffc63677a53338b87278b677ac3 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/7d/7dba5a0fd25a188fbfb9378b832f5443 b/CMPUT 250 W24 Lab 3/Library/Artifacts/7d/7dba5a0fd25a188fbfb9378b832f5443 new file mode 100644 index 000000000..c8202293c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/7d/7dba5a0fd25a188fbfb9378b832f5443 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/7e/7e1048863bce180c9a2d38b95cabe19e b/CMPUT 250 W24 Lab 3/Library/Artifacts/7e/7e1048863bce180c9a2d38b95cabe19e new file mode 100644 index 000000000..2957d8efc Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/7e/7e1048863bce180c9a2d38b95cabe19e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/7e/7e123f5140e1ca0bf7d3045bd71ed7ca b/CMPUT 250 W24 Lab 3/Library/Artifacts/7e/7e123f5140e1ca0bf7d3045bd71ed7ca new file mode 100644 index 000000000..f07cfa8ef Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/7e/7e123f5140e1ca0bf7d3045bd71ed7ca differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/7e/7edc8186298fff8ec6f2a05696f86615 b/CMPUT 250 W24 Lab 3/Library/Artifacts/7e/7edc8186298fff8ec6f2a05696f86615 new file mode 100644 index 000000000..9776e5279 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/7e/7edc8186298fff8ec6f2a05696f86615 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/80/800d5b70cba41d0a8669b55e33c20dd3 b/CMPUT 250 W24 Lab 3/Library/Artifacts/80/800d5b70cba41d0a8669b55e33c20dd3 new file mode 100644 index 000000000..3ca154814 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/80/800d5b70cba41d0a8669b55e33c20dd3 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/81/813362616a18b7be5b7d29d2d50def91 b/CMPUT 250 W24 Lab 3/Library/Artifacts/81/813362616a18b7be5b7d29d2d50def91 new file mode 100644 index 000000000..b09dfb8e8 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/81/813362616a18b7be5b7d29d2d50def91 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/82/8260d23a871ce78bd909af5915933e59 b/CMPUT 250 W24 Lab 3/Library/Artifacts/82/8260d23a871ce78bd909af5915933e59 new file mode 100644 index 000000000..2baec673f Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/82/8260d23a871ce78bd909af5915933e59 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/82/82d187d4c2d7605e1154ea7e350c3ca8 b/CMPUT 250 W24 Lab 3/Library/Artifacts/82/82d187d4c2d7605e1154ea7e350c3ca8 new file mode 100644 index 000000000..4b4344027 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/82/82d187d4c2d7605e1154ea7e350c3ca8 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/83/834a65598daee5766c0f52c0882fe269 b/CMPUT 250 W24 Lab 3/Library/Artifacts/83/834a65598daee5766c0f52c0882fe269 new file mode 100644 index 000000000..712887560 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/83/834a65598daee5766c0f52c0882fe269 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/83/83e8b363f7c174a89c69857a78629dd9 b/CMPUT 250 W24 Lab 3/Library/Artifacts/83/83e8b363f7c174a89c69857a78629dd9 new file mode 100644 index 000000000..3210bd275 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/83/83e8b363f7c174a89c69857a78629dd9 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/85/851c74c03dfbb937d007233529bd50fd b/CMPUT 250 W24 Lab 3/Library/Artifacts/85/851c74c03dfbb937d007233529bd50fd new file mode 100644 index 000000000..39f6987bb Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/85/851c74c03dfbb937d007233529bd50fd differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/86/864238ec0e929052eee7267373e65d21 b/CMPUT 250 W24 Lab 3/Library/Artifacts/86/864238ec0e929052eee7267373e65d21 new file mode 100644 index 000000000..6669421f8 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/86/864238ec0e929052eee7267373e65d21 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/88/88a7ebc3b050206fcaa6e749375ef6ab b/CMPUT 250 W24 Lab 3/Library/Artifacts/88/88a7ebc3b050206fcaa6e749375ef6ab new file mode 100644 index 000000000..d262833c7 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/88/88a7ebc3b050206fcaa6e749375ef6ab differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/89/8902c2f64f8fc2149129e820b3823c7f b/CMPUT 250 W24 Lab 3/Library/Artifacts/89/8902c2f64f8fc2149129e820b3823c7f new file mode 100644 index 000000000..cce596de1 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/89/8902c2f64f8fc2149129e820b3823c7f differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/89/890e9c815e4c5d8e3156ec9779299474 b/CMPUT 250 W24 Lab 3/Library/Artifacts/89/890e9c815e4c5d8e3156ec9779299474 new file mode 100644 index 000000000..17f3a133f Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/89/890e9c815e4c5d8e3156ec9779299474 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/8a/8a2683e9f908e93478ef87797600c697 b/CMPUT 250 W24 Lab 3/Library/Artifacts/8a/8a2683e9f908e93478ef87797600c697 new file mode 100644 index 000000000..f3964de76 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/8a/8a2683e9f908e93478ef87797600c697 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/8f/8f95676d89f81815679ec338201fe617 b/CMPUT 250 W24 Lab 3/Library/Artifacts/8f/8f95676d89f81815679ec338201fe617 new file mode 100644 index 000000000..551f2f3a4 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/8f/8f95676d89f81815679ec338201fe617 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/8f/8fa458ef0e5544e2fb9679d3a9ed6faa b/CMPUT 250 W24 Lab 3/Library/Artifacts/8f/8fa458ef0e5544e2fb9679d3a9ed6faa new file mode 100644 index 000000000..59119903d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/8f/8fa458ef0e5544e2fb9679d3a9ed6faa differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/91/912779224ca6e81f81c40298d527c66b b/CMPUT 250 W24 Lab 3/Library/Artifacts/91/912779224ca6e81f81c40298d527c66b new file mode 100644 index 000000000..bf8df458b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/91/912779224ca6e81f81c40298d527c66b differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/91/9128b83cec76104e1f731ed04e176ad8 b/CMPUT 250 W24 Lab 3/Library/Artifacts/91/9128b83cec76104e1f731ed04e176ad8 new file mode 100644 index 000000000..4f0619a20 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/91/9128b83cec76104e1f731ed04e176ad8 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/92/92621bd0f37e9841d8d6629bd7e0b09d b/CMPUT 250 W24 Lab 3/Library/Artifacts/92/92621bd0f37e9841d8d6629bd7e0b09d new file mode 100644 index 000000000..7de089ccb Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/92/92621bd0f37e9841d8d6629bd7e0b09d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/92/92f15d892802e9491ca2679060169125 b/CMPUT 250 W24 Lab 3/Library/Artifacts/92/92f15d892802e9491ca2679060169125 new file mode 100644 index 000000000..ee53a9a8f Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/92/92f15d892802e9491ca2679060169125 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/93/936482d3fc767d7ccf55b679f57b663d b/CMPUT 250 W24 Lab 3/Library/Artifacts/93/936482d3fc767d7ccf55b679f57b663d new file mode 100644 index 000000000..49dead545 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/93/936482d3fc767d7ccf55b679f57b663d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/93/9386bacc877db413ff6f7552128b67e8 b/CMPUT 250 W24 Lab 3/Library/Artifacts/93/9386bacc877db413ff6f7552128b67e8 new file mode 100644 index 000000000..959fa82fc Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/93/9386bacc877db413ff6f7552128b67e8 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/93/93da9d24e6c42a7a1b6100c997a338fb b/CMPUT 250 W24 Lab 3/Library/Artifacts/93/93da9d24e6c42a7a1b6100c997a338fb new file mode 100644 index 000000000..17d605a56 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/93/93da9d24e6c42a7a1b6100c997a338fb differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/93/93f19e9abf067d9c404ea8ac7448f0ac b/CMPUT 250 W24 Lab 3/Library/Artifacts/93/93f19e9abf067d9c404ea8ac7448f0ac new file mode 100644 index 000000000..cf870ad0e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/93/93f19e9abf067d9c404ea8ac7448f0ac differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/94/94763d402ed310c458ccefa820686950 b/CMPUT 250 W24 Lab 3/Library/Artifacts/94/94763d402ed310c458ccefa820686950 new file mode 100644 index 000000000..f658012e0 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/94/94763d402ed310c458ccefa820686950 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/94/94f49446130adef4b7f4dd4ec4312bcf b/CMPUT 250 W24 Lab 3/Library/Artifacts/94/94f49446130adef4b7f4dd4ec4312bcf new file mode 100644 index 000000000..fc36ae429 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/94/94f49446130adef4b7f4dd4ec4312bcf differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/95/9571a819ac27014d120257ef690a0266 b/CMPUT 250 W24 Lab 3/Library/Artifacts/95/9571a819ac27014d120257ef690a0266 new file mode 100644 index 000000000..f5ec05130 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/95/9571a819ac27014d120257ef690a0266 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/98/9833a6952e2fa7d82291c71b6cc8b626 b/CMPUT 250 W24 Lab 3/Library/Artifacts/98/9833a6952e2fa7d82291c71b6cc8b626 new file mode 100644 index 000000000..9e0acea5e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/98/9833a6952e2fa7d82291c71b6cc8b626 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/98/98659f0e8dcb4dc1183be6536b5663f4 b/CMPUT 250 W24 Lab 3/Library/Artifacts/98/98659f0e8dcb4dc1183be6536b5663f4 new file mode 100644 index 000000000..89148f8e2 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/98/98659f0e8dcb4dc1183be6536b5663f4 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/98/989980b6796b599225b3e8f393931cb2 b/CMPUT 250 W24 Lab 3/Library/Artifacts/98/989980b6796b599225b3e8f393931cb2 new file mode 100644 index 000000000..8d43bd3b3 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/98/989980b6796b599225b3e8f393931cb2 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/99/99c60361794a59aa7212cf302424426c b/CMPUT 250 W24 Lab 3/Library/Artifacts/99/99c60361794a59aa7212cf302424426c new file mode 100644 index 000000000..c38d82eb8 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/99/99c60361794a59aa7212cf302424426c differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/9b/9b2257e85575f6f4f1a01ebbda255bab b/CMPUT 250 W24 Lab 3/Library/Artifacts/9b/9b2257e85575f6f4f1a01ebbda255bab new file mode 100644 index 000000000..06ab84e12 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/9b/9b2257e85575f6f4f1a01ebbda255bab differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/64/648477200d1df033aaa57fc2e9b52be5 b/CMPUT 250 W24 Lab 3/Library/Artifacts/9b/9b722d69d7c072e3b4b38f4ccfe1e952 similarity index 71% rename from CMPUT 250 W24 Lab 3/Library/Artifacts/64/648477200d1df033aaa57fc2e9b52be5 rename to CMPUT 250 W24 Lab 3/Library/Artifacts/9b/9b722d69d7c072e3b4b38f4ccfe1e952 index d4653b689..84755fa71 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/64/648477200d1df033aaa57fc2e9b52be5 and b/CMPUT 250 W24 Lab 3/Library/Artifacts/9b/9b722d69d7c072e3b4b38f4ccfe1e952 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/9b/9bf320e84c3a95f0d4c1b10f83dadba0 b/CMPUT 250 W24 Lab 3/Library/Artifacts/9b/9bf320e84c3a95f0d4c1b10f83dadba0 new file mode 100644 index 000000000..abddf1a4d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/9b/9bf320e84c3a95f0d4c1b10f83dadba0 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/9e/9e3bb3d8b6fd9002b04fab3697188356 b/CMPUT 250 W24 Lab 3/Library/Artifacts/9e/9e3bb3d8b6fd9002b04fab3697188356 new file mode 100644 index 000000000..1c6a7e195 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/9e/9e3bb3d8b6fd9002b04fab3697188356 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/9e/9e46619fb1fc1d7f46f2bc16e5586535 b/CMPUT 250 W24 Lab 3/Library/Artifacts/9e/9e46619fb1fc1d7f46f2bc16e5586535 new file mode 100644 index 000000000..6f2568c4b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/9e/9e46619fb1fc1d7f46f2bc16e5586535 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/9e/9ed182f9fda29d8221e328a31abe4ac5 b/CMPUT 250 W24 Lab 3/Library/Artifacts/9e/9ed182f9fda29d8221e328a31abe4ac5 new file mode 100644 index 000000000..3006621c4 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/9e/9ed182f9fda29d8221e328a31abe4ac5 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/9f/9f2cdd11429f0a532feb2d2379108543 b/CMPUT 250 W24 Lab 3/Library/Artifacts/9f/9f2cdd11429f0a532feb2d2379108543 new file mode 100644 index 000000000..796128a61 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/9f/9f2cdd11429f0a532feb2d2379108543 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/9f/9f337499e9f77e525ee6298f9c66af7c b/CMPUT 250 W24 Lab 3/Library/Artifacts/9f/9f337499e9f77e525ee6298f9c66af7c new file mode 100644 index 000000000..aa87c9a40 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/9f/9f337499e9f77e525ee6298f9c66af7c differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/9f/9fe06d7388c887d466ba71a98bb7554b b/CMPUT 250 W24 Lab 3/Library/Artifacts/9f/9fe06d7388c887d466ba71a98bb7554b new file mode 100644 index 000000000..2739d412c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/9f/9fe06d7388c887d466ba71a98bb7554b differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a0/a081bf030a69d5fde92d70f4b2d93976 b/CMPUT 250 W24 Lab 3/Library/Artifacts/a0/a081bf030a69d5fde92d70f4b2d93976 new file mode 100644 index 000000000..45b1a92a2 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a0/a081bf030a69d5fde92d70f4b2d93976 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a0/a09bcf2b5e9e5b5d9f1f89890eff99b3 b/CMPUT 250 W24 Lab 3/Library/Artifacts/a0/a09bcf2b5e9e5b5d9f1f89890eff99b3 new file mode 100644 index 000000000..a5b9576e5 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a0/a09bcf2b5e9e5b5d9f1f89890eff99b3 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a0/a0ab6adad96f6df316d6fa9ca8eb5f91 b/CMPUT 250 W24 Lab 3/Library/Artifacts/a0/a0ab6adad96f6df316d6fa9ca8eb5f91 new file mode 100644 index 000000000..b41be93b8 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a0/a0ab6adad96f6df316d6fa9ca8eb5f91 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a0/a0e23b1265d4a073bd2b132c8094b6e7 b/CMPUT 250 W24 Lab 3/Library/Artifacts/a0/a0e23b1265d4a073bd2b132c8094b6e7 new file mode 100644 index 000000000..010b36fcb Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a0/a0e23b1265d4a073bd2b132c8094b6e7 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a2/a28769db404cfd3b6fae66a296f5506d b/CMPUT 250 W24 Lab 3/Library/Artifacts/a2/a28769db404cfd3b6fae66a296f5506d new file mode 100644 index 000000000..8dc51b037 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a2/a28769db404cfd3b6fae66a296f5506d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a3/a34f2c8f39533d132225f32bbd6c3277 b/CMPUT 250 W24 Lab 3/Library/Artifacts/a3/a34f2c8f39533d132225f32bbd6c3277 new file mode 100644 index 000000000..137f3eedd Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a3/a34f2c8f39533d132225f32bbd6c3277 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a3/a3694a46c23d4ba89859d4074c8af7e4 b/CMPUT 250 W24 Lab 3/Library/Artifacts/a3/a3694a46c23d4ba89859d4074c8af7e4 new file mode 100644 index 000000000..db4fb9e3d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a3/a3694a46c23d4ba89859d4074c8af7e4 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a3/a388e66fdebe8d4f29294c75ddad2db4 b/CMPUT 250 W24 Lab 3/Library/Artifacts/a3/a388e66fdebe8d4f29294c75ddad2db4 new file mode 100644 index 000000000..4ecaf5c75 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a3/a388e66fdebe8d4f29294c75ddad2db4 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a3/a3f0fc1451be5bdfb6672a5220ecd42c b/CMPUT 250 W24 Lab 3/Library/Artifacts/a3/a3f0fc1451be5bdfb6672a5220ecd42c new file mode 100644 index 000000000..00b47f1f9 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a3/a3f0fc1451be5bdfb6672a5220ecd42c differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a4/a44f6080f072dba65c65f68df59c00d8 b/CMPUT 250 W24 Lab 3/Library/Artifacts/a4/a44f6080f072dba65c65f68df59c00d8 new file mode 100644 index 000000000..c016a1d57 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a4/a44f6080f072dba65c65f68df59c00d8 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a4/a4cdb1f2fff260f0b4b7584c56cdcae7 b/CMPUT 250 W24 Lab 3/Library/Artifacts/a4/a4cdb1f2fff260f0b4b7584c56cdcae7 new file mode 100644 index 000000000..c5ad6f212 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a4/a4cdb1f2fff260f0b4b7584c56cdcae7 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a5/a502da21475dc229d394629eab936602 b/CMPUT 250 W24 Lab 3/Library/Artifacts/a5/a502da21475dc229d394629eab936602 new file mode 100644 index 000000000..ea6535880 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a5/a502da21475dc229d394629eab936602 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a5/a56a7ef65c2088ceb6abc69dc43efb77 b/CMPUT 250 W24 Lab 3/Library/Artifacts/a5/a56a7ef65c2088ceb6abc69dc43efb77 new file mode 100644 index 000000000..994245678 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a5/a56a7ef65c2088ceb6abc69dc43efb77 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/eb/ebf2ccfb17978bf24cdf582131fb2989 b/CMPUT 250 W24 Lab 3/Library/Artifacts/a8/a829f87bb546a863a5a10eacbc69a132 similarity index 72% rename from CMPUT 250 W24 Lab 3/Library/Artifacts/eb/ebf2ccfb17978bf24cdf582131fb2989 rename to CMPUT 250 W24 Lab 3/Library/Artifacts/a8/a829f87bb546a863a5a10eacbc69a132 index 93b84d99f..a0fae042a 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/eb/ebf2ccfb17978bf24cdf582131fb2989 and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a8/a829f87bb546a863a5a10eacbc69a132 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/a8/a86916b75ad6707f11a296548a3b9684 b/CMPUT 250 W24 Lab 3/Library/Artifacts/a8/a86916b75ad6707f11a296548a3b9684 new file mode 100644 index 000000000..a9c85468c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/a8/a86916b75ad6707f11a296548a3b9684 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/aa/aa6e1930ff17d783f275a30aa56d9126 b/CMPUT 250 W24 Lab 3/Library/Artifacts/aa/aa6e1930ff17d783f275a30aa56d9126 new file mode 100644 index 000000000..8fd59f289 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/aa/aa6e1930ff17d783f275a30aa56d9126 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ab/ab567d77512da8ab15867c96cd34f117 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ab/ab567d77512da8ab15867c96cd34f117 new file mode 100644 index 000000000..c675bb3fc Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ab/ab567d77512da8ab15867c96cd34f117 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ac/acea48a28dc03dac85399c0a114ebd2b b/CMPUT 250 W24 Lab 3/Library/Artifacts/ac/acea48a28dc03dac85399c0a114ebd2b new file mode 100644 index 000000000..87f3bae93 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ac/acea48a28dc03dac85399c0a114ebd2b differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ac/acf3172e044786404500d0cda4056709 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ac/acf3172e044786404500d0cda4056709 new file mode 100644 index 000000000..e80aad627 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ac/acf3172e044786404500d0cda4056709 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ad/ada1f2d06638b9b81b04d292d5a1cf20 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ad/ada1f2d06638b9b81b04d292d5a1cf20 new file mode 100644 index 000000000..255a376cd Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ad/ada1f2d06638b9b81b04d292d5a1cf20 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ae/aee2ce1105a501325d28b108163ae79a b/CMPUT 250 W24 Lab 3/Library/Artifacts/ae/aee2ce1105a501325d28b108163ae79a new file mode 100644 index 000000000..bd86b5018 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ae/aee2ce1105a501325d28b108163ae79a differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b0/b048d48ab38ec32a58471087c7fbdc15 b/CMPUT 250 W24 Lab 3/Library/Artifacts/b0/b048d48ab38ec32a58471087c7fbdc15 new file mode 100644 index 000000000..3b46774bb Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b0/b048d48ab38ec32a58471087c7fbdc15 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b1/b1a3de60012e8e241692d2621f8e6d9e b/CMPUT 250 W24 Lab 3/Library/Artifacts/b1/b1a3de60012e8e241692d2621f8e6d9e new file mode 100644 index 000000000..9b0359d22 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b1/b1a3de60012e8e241692d2621f8e6d9e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b23cdc434f29283eff0fa57ef78f1ee8 b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b23cdc434f29283eff0fa57ef78f1ee8 new file mode 100644 index 000000000..261d9376a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b23cdc434f29283eff0fa57ef78f1ee8 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b24c38765121784aae17e4654f29ad52 b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b24c38765121784aae17e4654f29ad52 new file mode 100644 index 000000000..d53422603 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b24c38765121784aae17e4654f29ad52 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b262f7e25aa066775d375a9d148bfdb6 b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b262f7e25aa066775d375a9d148bfdb6 new file mode 100644 index 000000000..8f329aa38 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b262f7e25aa066775d375a9d148bfdb6 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b2a78c2a1294bf633062abd5f48a147b b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b2a78c2a1294bf633062abd5f48a147b new file mode 100644 index 000000000..dba0d1759 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b2a78c2a1294bf633062abd5f48a147b differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b2ac731a266514b1024eeb5342951388 b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b2ac731a266514b1024eeb5342951388 new file mode 100644 index 000000000..766a8df1d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b2ac731a266514b1024eeb5342951388 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b2ad639ccae3e8f8e7d62c2c4c960a75 b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b2ad639ccae3e8f8e7d62c2c4c960a75 new file mode 100644 index 000000000..e5c9d72ca Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b2ad639ccae3e8f8e7d62c2c4c960a75 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b2b97d02e2a293375cf8f16bd5d1b7b1 b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b2b97d02e2a293375cf8f16bd5d1b7b1 new file mode 100644 index 000000000..878ee3674 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b2/b2b97d02e2a293375cf8f16bd5d1b7b1 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b3/b390f7be9fbb63f92c18d47551c4b0bf b/CMPUT 250 W24 Lab 3/Library/Artifacts/b3/b390f7be9fbb63f92c18d47551c4b0bf new file mode 100644 index 000000000..bebd34e0e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b3/b390f7be9fbb63f92c18d47551c4b0bf differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b4/b4289e57d6511c18c427c6fe01d33e7f b/CMPUT 250 W24 Lab 3/Library/Artifacts/b4/b4289e57d6511c18c427c6fe01d33e7f new file mode 100644 index 000000000..0835619c5 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b4/b4289e57d6511c18c427c6fe01d33e7f differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b5/b5953453c6d972dbf1094b05c0faec33 b/CMPUT 250 W24 Lab 3/Library/Artifacts/b5/b5953453c6d972dbf1094b05c0faec33 new file mode 100644 index 000000000..26b586961 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b5/b5953453c6d972dbf1094b05c0faec33 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b7/b79bb260a980314659480fd903899b68 b/CMPUT 250 W24 Lab 3/Library/Artifacts/b7/b79bb260a980314659480fd903899b68 new file mode 100644 index 000000000..dbdf99fa4 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b7/b79bb260a980314659480fd903899b68 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/b9/b9c5b372878f127a855222fc15adcb2f b/CMPUT 250 W24 Lab 3/Library/Artifacts/b9/b9c5b372878f127a855222fc15adcb2f new file mode 100644 index 000000000..026f97076 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/b9/b9c5b372878f127a855222fc15adcb2f differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ba/ba5538b683e5fe24da363d0262f2b6c8 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ba/ba5538b683e5fe24da363d0262f2b6c8 new file mode 100644 index 000000000..2d4257f36 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ba/ba5538b683e5fe24da363d0262f2b6c8 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ba/baa25207744dfc38e216c9253ce0f092 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ba/baa25207744dfc38e216c9253ce0f092 new file mode 100644 index 000000000..6987372cc Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ba/baa25207744dfc38e216c9253ce0f092 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/bd/bdc17ce1a6bcf5fa18582ab96607f875 b/CMPUT 250 W24 Lab 3/Library/Artifacts/bd/bdc17ce1a6bcf5fa18582ab96607f875 new file mode 100644 index 000000000..dab7a68aa Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/bd/bdc17ce1a6bcf5fa18582ab96607f875 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/bd/bdc3da7c087d1079f72485e2c9e570a1 b/CMPUT 250 W24 Lab 3/Library/Artifacts/bd/bdc3da7c087d1079f72485e2c9e570a1 new file mode 100644 index 000000000..72317c3dc Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/bd/bdc3da7c087d1079f72485e2c9e570a1 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/be/bebdad302ff127ea89322cd996b789a5 b/CMPUT 250 W24 Lab 3/Library/Artifacts/be/bebdad302ff127ea89322cd996b789a5 new file mode 100644 index 000000000..8b68aa230 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/be/bebdad302ff127ea89322cd996b789a5 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/bf/bf878c89129fa5ac65264089fc856ff6 b/CMPUT 250 W24 Lab 3/Library/Artifacts/bf/bf878c89129fa5ac65264089fc856ff6 new file mode 100644 index 000000000..f9fbb7729 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/bf/bf878c89129fa5ac65264089fc856ff6 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c0/c02f103756290107bc2a1765dc3e937f b/CMPUT 250 W24 Lab 3/Library/Artifacts/c0/c02f103756290107bc2a1765dc3e937f new file mode 100644 index 000000000..5c3d9064c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c0/c02f103756290107bc2a1765dc3e937f differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c1/c19fe0543aa203e83899de80ccd49922 b/CMPUT 250 W24 Lab 3/Library/Artifacts/c1/c19fe0543aa203e83899de80ccd49922 new file mode 100644 index 000000000..fc9ab308c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c1/c19fe0543aa203e83899de80ccd49922 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c2/c2869df6880c2d10d0195948b1ec0feb b/CMPUT 250 W24 Lab 3/Library/Artifacts/c2/c2869df6880c2d10d0195948b1ec0feb new file mode 100644 index 000000000..432dca552 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c2/c2869df6880c2d10d0195948b1ec0feb differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c3/c3688d450559b027b0849e401cfe9ea1 b/CMPUT 250 W24 Lab 3/Library/Artifacts/c3/c3688d450559b027b0849e401cfe9ea1 new file mode 100644 index 000000000..39d78e984 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c3/c3688d450559b027b0849e401cfe9ea1 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c4408db389217b3edc0b821ec63f36d9 b/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c4408db389217b3edc0b821ec63f36d9 new file mode 100644 index 000000000..028d6a98e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c4408db389217b3edc0b821ec63f36d9 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c4753aac6d67464ddc42971c59bb803b b/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c4753aac6d67464ddc42971c59bb803b new file mode 100644 index 000000000..0de8b3e51 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c4753aac6d67464ddc42971c59bb803b differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c47d72cfe82cbf75597e9962b891d411 b/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c47d72cfe82cbf75597e9962b891d411 new file mode 100644 index 000000000..35616a7bf Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c47d72cfe82cbf75597e9962b891d411 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c4c39b472b9f59865900c09665fac4ec b/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c4c39b472b9f59865900c09665fac4ec new file mode 100644 index 000000000..af68a5ed9 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c4c39b472b9f59865900c09665fac4ec differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c4f0239b76e865309bf53e778b26f86a b/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c4f0239b76e865309bf53e778b26f86a new file mode 100644 index 000000000..b41a03837 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c4/c4f0239b76e865309bf53e778b26f86a differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c5/c581975c40af153a1a875158348ad01b b/CMPUT 250 W24 Lab 3/Library/Artifacts/c5/c581975c40af153a1a875158348ad01b new file mode 100644 index 000000000..24637a2eb Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c5/c581975c40af153a1a875158348ad01b differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c6/c68a2ae35e93d7736d334897e28aac56 b/CMPUT 250 W24 Lab 3/Library/Artifacts/c6/c68a2ae35e93d7736d334897e28aac56 new file mode 100644 index 000000000..ccca37c41 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c6/c68a2ae35e93d7736d334897e28aac56 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c7/c7330b04fcdcdcfe9955a7b5c23dea32 b/CMPUT 250 W24 Lab 3/Library/Artifacts/c7/c7330b04fcdcdcfe9955a7b5c23dea32 new file mode 100644 index 000000000..44c7b2780 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c7/c7330b04fcdcdcfe9955a7b5c23dea32 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c7/c7e79676780828d106067aaa35a02f1a b/CMPUT 250 W24 Lab 3/Library/Artifacts/c7/c7e79676780828d106067aaa35a02f1a new file mode 100644 index 000000000..fbbf07c39 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c7/c7e79676780828d106067aaa35a02f1a differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c8/c89ec42e93b150fbe90e1007580a2815 b/CMPUT 250 W24 Lab 3/Library/Artifacts/c8/c89ec42e93b150fbe90e1007580a2815 new file mode 100644 index 000000000..fe278b1bb Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c8/c89ec42e93b150fbe90e1007580a2815 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ca/ca1a4eca88bf4c9d34333ef83d0e2f10 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ca/ca1a4eca88bf4c9d34333ef83d0e2f10 new file mode 100644 index 000000000..0e77b9da4 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ca/ca1a4eca88bf4c9d34333ef83d0e2f10 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ca/ca1ef763221d21e0377ba03875ea2efc b/CMPUT 250 W24 Lab 3/Library/Artifacts/ca/ca1ef763221d21e0377ba03875ea2efc new file mode 100644 index 000000000..d0e300084 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ca/ca1ef763221d21e0377ba03875ea2efc differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ca/ca50811db29ecb6206682ab9832dddb7 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ca/ca50811db29ecb6206682ab9832dddb7 new file mode 100644 index 000000000..d71b35148 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ca/ca50811db29ecb6206682ab9832dddb7 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/cb/cbf80c37dd8aa8274be2605e8f5d3a5c b/CMPUT 250 W24 Lab 3/Library/Artifacts/cb/cbf80c37dd8aa8274be2605e8f5d3a5c new file mode 100644 index 000000000..c89540631 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/cb/cbf80c37dd8aa8274be2605e8f5d3a5c differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/cc/cc07c7b1d3c19703ba350c89c07902df b/CMPUT 250 W24 Lab 3/Library/Artifacts/cc/cc07c7b1d3c19703ba350c89c07902df new file mode 100644 index 000000000..fc086c95c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/cc/cc07c7b1d3c19703ba350c89c07902df differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/cd/cdd699ba4112d6d93a44f42ced0ec540 b/CMPUT 250 W24 Lab 3/Library/Artifacts/cd/cdd699ba4112d6d93a44f42ced0ec540 new file mode 100644 index 000000000..ec1eab1b6 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/cd/cdd699ba4112d6d93a44f42ced0ec540 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/cf/cf4116c1b27c5469601c162146b4e574 b/CMPUT 250 W24 Lab 3/Library/Artifacts/cf/cf4116c1b27c5469601c162146b4e574 new file mode 100644 index 000000000..f3644cc4a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/cf/cf4116c1b27c5469601c162146b4e574 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/cf/cfa2ffe145c779803de5977043438d66 b/CMPUT 250 W24 Lab 3/Library/Artifacts/cf/cfa2ffe145c779803de5977043438d66 new file mode 100644 index 000000000..e438129e5 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/cf/cfa2ffe145c779803de5977043438d66 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d1/d11afe718c29b1b90eb78dcf8dc5463e b/CMPUT 250 W24 Lab 3/Library/Artifacts/d1/d11afe718c29b1b90eb78dcf8dc5463e new file mode 100644 index 000000000..42998a77d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d1/d11afe718c29b1b90eb78dcf8dc5463e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d2/d2161415688851502e02881048af51ac b/CMPUT 250 W24 Lab 3/Library/Artifacts/d2/d2161415688851502e02881048af51ac new file mode 100644 index 000000000..8c3753031 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d2/d2161415688851502e02881048af51ac differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d3/d361824ac88a26568ad1da4702cb995b b/CMPUT 250 W24 Lab 3/Library/Artifacts/d3/d361824ac88a26568ad1da4702cb995b new file mode 100644 index 000000000..eacd94d59 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d3/d361824ac88a26568ad1da4702cb995b differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d3/d3f72cb853f7632f67a72fa23ca0b84a b/CMPUT 250 W24 Lab 3/Library/Artifacts/d3/d3f72cb853f7632f67a72fa23ca0b84a new file mode 100644 index 000000000..78087cd63 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d3/d3f72cb853f7632f67a72fa23ca0b84a differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d5/d5925ce4149c64707f4223b60194a696 b/CMPUT 250 W24 Lab 3/Library/Artifacts/d5/d5925ce4149c64707f4223b60194a696 new file mode 100644 index 000000000..c4b144a9f Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d5/d5925ce4149c64707f4223b60194a696 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d5/d5a80438ae7937cceafe6f9e25611eda b/CMPUT 250 W24 Lab 3/Library/Artifacts/d5/d5a80438ae7937cceafe6f9e25611eda new file mode 100644 index 000000000..2ef96829d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d5/d5a80438ae7937cceafe6f9e25611eda differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d71abd6e82f95fe1f667442bc0a9e1b8 b/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d71abd6e82f95fe1f667442bc0a9e1b8 new file mode 100644 index 000000000..a485ef81f Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d71abd6e82f95fe1f667442bc0a9e1b8 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d731d8e8f79b8e7a6295e339f43b2bc7 b/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d731d8e8f79b8e7a6295e339f43b2bc7 new file mode 100644 index 000000000..cb529f464 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d731d8e8f79b8e7a6295e339f43b2bc7 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d745b2bb2ec88804d23637e820995701 b/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d745b2bb2ec88804d23637e820995701 new file mode 100644 index 000000000..733099297 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d745b2bb2ec88804d23637e820995701 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d7c273c9aca3f333e62cea9573f905f4 b/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d7c273c9aca3f333e62cea9573f905f4 new file mode 100644 index 000000000..af9ed7572 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d7c273c9aca3f333e62cea9573f905f4 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d7fab68e5038517603a00270ad2a6c54 b/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d7fab68e5038517603a00270ad2a6c54 new file mode 100644 index 000000000..ce07658ec Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d7/d7fab68e5038517603a00270ad2a6c54 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d8/d87fda170967a81f9abda934c135a2a3 b/CMPUT 250 W24 Lab 3/Library/Artifacts/d8/d87fda170967a81f9abda934c135a2a3 new file mode 100644 index 000000000..2cf5a5d5d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d8/d87fda170967a81f9abda934c135a2a3 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d8/d8ad4647d180813af15cfc5b06622430 b/CMPUT 250 W24 Lab 3/Library/Artifacts/d8/d8ad4647d180813af15cfc5b06622430 new file mode 100644 index 000000000..8415ced76 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d8/d8ad4647d180813af15cfc5b06622430 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/d8/d8f09538e229c9b5e023c2b6445c309e b/CMPUT 250 W24 Lab 3/Library/Artifacts/d8/d8f09538e229c9b5e023c2b6445c309e new file mode 100644 index 000000000..2d0466291 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/d8/d8f09538e229c9b5e023c2b6445c309e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/da/da262469b7c95cb989f089a2d3aee781 b/CMPUT 250 W24 Lab 3/Library/Artifacts/da/da262469b7c95cb989f089a2d3aee781 new file mode 100644 index 000000000..000bd9d56 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/da/da262469b7c95cb989f089a2d3aee781 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/da/da2cf957dc054c158ce8bfc9bbab0ac4 b/CMPUT 250 W24 Lab 3/Library/Artifacts/da/da2cf957dc054c158ce8bfc9bbab0ac4 new file mode 100644 index 000000000..3ca3017f6 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/da/da2cf957dc054c158ce8bfc9bbab0ac4 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/db/dbb53dbf30b7be8c4be22c33ccde4d66 b/CMPUT 250 W24 Lab 3/Library/Artifacts/db/dbb53dbf30b7be8c4be22c33ccde4d66 new file mode 100644 index 000000000..e2296f28a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/db/dbb53dbf30b7be8c4be22c33ccde4d66 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/db/dbe3a497a258a610e78b1853b3696685 b/CMPUT 250 W24 Lab 3/Library/Artifacts/db/dbe3a497a258a610e78b1853b3696685 new file mode 100644 index 000000000..b62cc1b58 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/db/dbe3a497a258a610e78b1853b3696685 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/dc/dc08dd3a0a2d164f1bb5f3c6006ec08a b/CMPUT 250 W24 Lab 3/Library/Artifacts/dc/dc08dd3a0a2d164f1bb5f3c6006ec08a new file mode 100644 index 000000000..64ca51049 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/dc/dc08dd3a0a2d164f1bb5f3c6006ec08a differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/dc/dc88e57944983abe414a42541834f4c2 b/CMPUT 250 W24 Lab 3/Library/Artifacts/dc/dc88e57944983abe414a42541834f4c2 new file mode 100644 index 000000000..e39661e05 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/dc/dc88e57944983abe414a42541834f4c2 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/de/dedf7bbe38e545158e05eb7cd963e562 b/CMPUT 250 W24 Lab 3/Library/Artifacts/de/dedf7bbe38e545158e05eb7cd963e562 new file mode 100644 index 000000000..8b4a34f3a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/de/dedf7bbe38e545158e05eb7cd963e562 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/df/df1e7bf71bd136ef2d09177a52f0f361 b/CMPUT 250 W24 Lab 3/Library/Artifacts/df/df1e7bf71bd136ef2d09177a52f0f361 new file mode 100644 index 000000000..4098c1355 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/df/df1e7bf71bd136ef2d09177a52f0f361 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/df/df67b2c64be69e440973a6dfd31c357c b/CMPUT 250 W24 Lab 3/Library/Artifacts/df/df67b2c64be69e440973a6dfd31c357c new file mode 100644 index 000000000..89cb22614 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/df/df67b2c64be69e440973a6dfd31c357c differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/e0/e0c36d535b7dfd4fedfc9914044e249e b/CMPUT 250 W24 Lab 3/Library/Artifacts/e0/e0c36d535b7dfd4fedfc9914044e249e new file mode 100644 index 000000000..241b0da1d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/e0/e0c36d535b7dfd4fedfc9914044e249e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/e2/e2001381b3599c3e5cb04c81f136ef66 b/CMPUT 250 W24 Lab 3/Library/Artifacts/e2/e2001381b3599c3e5cb04c81f136ef66 new file mode 100644 index 000000000..3618a7946 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/e2/e2001381b3599c3e5cb04c81f136ef66 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/e2/e207449e03aaa423b26fa037d84a4d70 b/CMPUT 250 W24 Lab 3/Library/Artifacts/e2/e207449e03aaa423b26fa037d84a4d70 new file mode 100644 index 000000000..8fb21a2f0 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/e2/e207449e03aaa423b26fa037d84a4d70 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/e2/e21cce2cfab346a2ef0711982f0b1499 b/CMPUT 250 W24 Lab 3/Library/Artifacts/e2/e21cce2cfab346a2ef0711982f0b1499 new file mode 100644 index 000000000..8d345227b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/e2/e21cce2cfab346a2ef0711982f0b1499 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/e3/e3ad8eec0578c1b6a071358903f64018 b/CMPUT 250 W24 Lab 3/Library/Artifacts/e3/e3ad8eec0578c1b6a071358903f64018 new file mode 100644 index 000000000..581c7ed4c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/e3/e3ad8eec0578c1b6a071358903f64018 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/e4/e45eda2e588b206c568123ebda45a347 b/CMPUT 250 W24 Lab 3/Library/Artifacts/e4/e45eda2e588b206c568123ebda45a347 new file mode 100644 index 000000000..46358a84f Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/e4/e45eda2e588b206c568123ebda45a347 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/e7/e7bf9641386792df5666f447fecb9141 b/CMPUT 250 W24 Lab 3/Library/Artifacts/e7/e7bf9641386792df5666f447fecb9141 new file mode 100644 index 000000000..5bbc3270f Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/e7/e7bf9641386792df5666f447fecb9141 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/e8/e8a055070cd132cbe4884628710ff890 b/CMPUT 250 W24 Lab 3/Library/Artifacts/e8/e8a055070cd132cbe4884628710ff890 new file mode 100644 index 000000000..234207fd1 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/e8/e8a055070cd132cbe4884628710ff890 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/e9/e9ab00296f93ff7f1ec68f377723c509 b/CMPUT 250 W24 Lab 3/Library/Artifacts/e9/e9ab00296f93ff7f1ec68f377723c509 new file mode 100644 index 000000000..64a8b39db Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/e9/e9ab00296f93ff7f1ec68f377723c509 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ea/ea6fd05d02ea183eafe163b49acf9568 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ea/ea6fd05d02ea183eafe163b49acf9568 new file mode 100644 index 000000000..e52236fdf Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ea/ea6fd05d02ea183eafe163b49acf9568 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/eb/ebb12a0f9e81578f52be15af287537f6 b/CMPUT 250 W24 Lab 3/Library/Artifacts/eb/ebb12a0f9e81578f52be15af287537f6 new file mode 100644 index 000000000..9372a3060 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/eb/ebb12a0f9e81578f52be15af287537f6 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ec/ec34e6d0b90cd02a56cc429880f3f8ce b/CMPUT 250 W24 Lab 3/Library/Artifacts/ec/ec34e6d0b90cd02a56cc429880f3f8ce new file mode 100644 index 000000000..7305f345c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ec/ec34e6d0b90cd02a56cc429880f3f8ce differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ec/eca2e4071847a3e5c1b06ff5de082010 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ec/eca2e4071847a3e5c1b06ff5de082010 new file mode 100644 index 000000000..802bc77b7 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ec/eca2e4071847a3e5c1b06ff5de082010 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ed/ed23b5161999f7e361f5d41979ec6f57 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ed/ed23b5161999f7e361f5d41979ec6f57 new file mode 100644 index 000000000..71cb83597 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ed/ed23b5161999f7e361f5d41979ec6f57 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ee/eeae4505afcd10e59599c63511f9f4cb b/CMPUT 250 W24 Lab 3/Library/Artifacts/ee/eeae4505afcd10e59599c63511f9f4cb new file mode 100644 index 000000000..d05df540c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ee/eeae4505afcd10e59599c63511f9f4cb differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ee/eeb30f8ec52a66ed8fcaa1273d808a0d b/CMPUT 250 W24 Lab 3/Library/Artifacts/ee/eeb30f8ec52a66ed8fcaa1273d808a0d new file mode 100644 index 000000000..5486c4621 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ee/eeb30f8ec52a66ed8fcaa1273d808a0d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ef/ef544769843b90a4f78db3563844e64a b/CMPUT 250 W24 Lab 3/Library/Artifacts/ef/ef544769843b90a4f78db3563844e64a new file mode 100644 index 000000000..6aecfc54d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ef/ef544769843b90a4f78db3563844e64a differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ef/ef747cb825773b6fdb24b64e87ce0ca3 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ef/ef747cb825773b6fdb24b64e87ce0ca3 new file mode 100644 index 000000000..c333a26cb Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ef/ef747cb825773b6fdb24b64e87ce0ca3 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f0/f0ae80b70b9ca84989d555cf3db55d73 b/CMPUT 250 W24 Lab 3/Library/Artifacts/f0/f0ae80b70b9ca84989d555cf3db55d73 new file mode 100644 index 000000000..ba0e65aa5 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/f0/f0ae80b70b9ca84989d555cf3db55d73 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f1/f12d1f0ee0b1d6811044181c2cd2d887 b/CMPUT 250 W24 Lab 3/Library/Artifacts/f1/f12d1f0ee0b1d6811044181c2cd2d887 new file mode 100644 index 000000000..14675a950 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/f1/f12d1f0ee0b1d6811044181c2cd2d887 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f3/f32a51d9fca4563b5b8fcb7c7f588ba9 b/CMPUT 250 W24 Lab 3/Library/Artifacts/f3/f32a51d9fca4563b5b8fcb7c7f588ba9 new file mode 100644 index 000000000..f78346b4b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/f3/f32a51d9fca4563b5b8fcb7c7f588ba9 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f3/f37392119454e4b69ecc81d632d8d74f b/CMPUT 250 W24 Lab 3/Library/Artifacts/f3/f37392119454e4b69ecc81d632d8d74f new file mode 100644 index 000000000..119a9404b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/f3/f37392119454e4b69ecc81d632d8d74f differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f3/f38d3c598f0e75146f1a1fe1a0905e65 b/CMPUT 250 W24 Lab 3/Library/Artifacts/f3/f38d3c598f0e75146f1a1fe1a0905e65 new file mode 100644 index 000000000..35c713e9a Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/f3/f38d3c598f0e75146f1a1fe1a0905e65 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f3/f3d94c9eb3f20546dbabdf9ca096281e b/CMPUT 250 W24 Lab 3/Library/Artifacts/f3/f3d94c9eb3f20546dbabdf9ca096281e new file mode 100644 index 000000000..ecddfcaeb Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/f3/f3d94c9eb3f20546dbabdf9ca096281e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f4/f46a51d322218e0ef4098bda832c1ff0 b/CMPUT 250 W24 Lab 3/Library/Artifacts/f4/f46a51d322218e0ef4098bda832c1ff0 new file mode 100644 index 000000000..0887acb87 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/f4/f46a51d322218e0ef4098bda832c1ff0 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f5/f53ec9645d851f265318b01a365feb94 b/CMPUT 250 W24 Lab 3/Library/Artifacts/f5/f53ec9645d851f265318b01a365feb94 new file mode 100644 index 000000000..e4026cde8 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/f5/f53ec9645d851f265318b01a365feb94 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f6/f68d9938683d2222612b0e5b6d79b168 b/CMPUT 250 W24 Lab 3/Library/Artifacts/f6/f68d9938683d2222612b0e5b6d79b168 new file mode 100644 index 000000000..d91cef0b3 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/f6/f68d9938683d2222612b0e5b6d79b168 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f79c1cbb7559607c53eccfe66ccc4350 b/CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f79c1cbb7559607c53eccfe66ccc4350 new file mode 100644 index 000000000..de63c6da3 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f79c1cbb7559607c53eccfe66ccc4350 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f9/f9847bc3db9924399fb78fb861f33b9d b/CMPUT 250 W24 Lab 3/Library/Artifacts/f9/f9847bc3db9924399fb78fb861f33b9d new file mode 100644 index 000000000..ee02a02f1 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/f9/f9847bc3db9924399fb78fb861f33b9d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f9/f9c389a6080e8420c86eecca762fbddb b/CMPUT 250 W24 Lab 3/Library/Artifacts/f9/f9c389a6080e8420c86eecca762fbddb new file mode 100644 index 000000000..09964900d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/f9/f9c389a6080e8420c86eecca762fbddb differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/fa/fa6cc2ca91226ccec0bb997b60d04270 b/CMPUT 250 W24 Lab 3/Library/Artifacts/fa/fa6cc2ca91226ccec0bb997b60d04270 new file mode 100644 index 000000000..3d850d01c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/fa/fa6cc2ca91226ccec0bb997b60d04270 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/fb/fb5405dbace4d91820ef22ea6287bbaf b/CMPUT 250 W24 Lab 3/Library/Artifacts/fb/fb5405dbace4d91820ef22ea6287bbaf new file mode 100644 index 000000000..97271c741 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/fb/fb5405dbace4d91820ef22ea6287bbaf differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/fc/fc79d4afbb82dab6b5ab993928823f8a b/CMPUT 250 W24 Lab 3/Library/Artifacts/fc/fc79d4afbb82dab6b5ab993928823f8a new file mode 100644 index 000000000..9a585cf43 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/fc/fc79d4afbb82dab6b5ab993928823f8a differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/fc/fcc49c4ef705b61e4e50c3c927f89b80 b/CMPUT 250 W24 Lab 3/Library/Artifacts/fc/fcc49c4ef705b61e4e50c3c927f89b80 new file mode 100644 index 000000000..fd56e0460 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/fc/fcc49c4ef705b61e4e50c3c927f89b80 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/fe/fe535f74f94cce1625d3fcd94ca3a6ba b/CMPUT 250 W24 Lab 3/Library/Artifacts/fe/fe535f74f94cce1625d3fcd94ca3a6ba new file mode 100644 index 000000000..d3a12c4df Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/fe/fe535f74f94cce1625d3fcd94ca3a6ba differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ff/ff44abd7239968a4d32aac6f4694a3a9 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ff/ff44abd7239968a4d32aac6f4694a3a9 new file mode 100644 index 000000000..453af7b21 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ff/ff44abd7239968a4d32aac6f4694a3a9 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ff/ff5250f650433f33a6bf465d7cabdf53 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ff/ff5250f650433f33a6bf465d7cabdf53 new file mode 100644 index 000000000..89f5ab6d8 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ff/ff5250f650433f33a6bf465d7cabdf53 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ff/ff9147dc918a433e2068317a85788cf6 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ff/ff9147dc918a433e2068317a85788cf6 new file mode 100644 index 000000000..ce6364999 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ff/ff9147dc918a433e2068317a85788cf6 differ diff --git a/CMPUT 250 W24 Lab 3/Library/CurrentLayout-default.dwlt b/CMPUT 250 W24 Lab 3/Library/CurrentLayout-default.dwlt index 0c3980e59..d5c0c4d1d 100644 --- a/CMPUT 250 W24 Lab 3/Library/CurrentLayout-default.dwlt +++ b/CMPUT 250 W24 Lab 3/Library/CurrentLayout-default.dwlt @@ -14,13 +14,13 @@ MonoBehaviour: m_EditorClassIdentifier: m_PixelRect: serializedVersion: 2 - x: 142 - y: 172 + x: 631 + y: 828 width: 1298 height: 631 m_ShowMode: 0 m_Title: - m_RootView: {fileID: 5} + m_RootView: {fileID: 4} m_MinSize: {x: 100, y: 121} m_MaxSize: {x: 4000, y: 4021} m_Maximized: 0 @@ -44,33 +44,11 @@ MonoBehaviour: height: 750 m_ShowMode: 4 m_Title: - m_RootView: {fileID: 6} - m_MinSize: {x: 875, y: 471} + m_RootView: {fileID: 5} + m_MinSize: {x: 875, y: 492} m_MaxSize: {x: 10000, y: 10000} m_Maximized: 0 --- !u!114 &3 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12060, guid: 0000000000000000e000000000000000, type: 0} - m_Name: GameView - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 0 - y: 30 - width: 1440 - height: 700 - m_MinSize: {x: 200, y: 223} - m_MaxSize: {x: 4000, y: 4023} - m_ActualView: {fileID: 10} ---- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -89,14 +67,14 @@ MonoBehaviour: y: 0 width: 1298 height: 631 - m_MinSize: {x: 100, y: 121} - m_MaxSize: {x: 4000, y: 4021} - m_ActualView: {fileID: 9} + m_MinSize: {x: 100, y: 100} + m_MaxSize: {x: 4000, y: 4000} + m_ActualView: {fileID: 15} m_Panes: - - {fileID: 9} + - {fileID: 15} m_Selected: 0 m_LastSelected: 0 ---- !u!114 &5 +--- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -109,7 +87,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 4} + - {fileID: 3} m_Position: serializedVersion: 2 x: 0 @@ -119,8 +97,8 @@ MonoBehaviour: m_MinSize: {x: 100, y: 121} m_MaxSize: {x: 4000, y: 4021} vertical: 0 - controlID: 416 ---- !u!114 &6 + controlID: 15 +--- !u!114 &5 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -133,18 +111,18 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 7} - - {fileID: 3} + - {fileID: 6} - {fileID: 8} + - {fileID: 7} m_Position: serializedVersion: 2 x: 0 y: 0 width: 1440 height: 750 - m_MinSize: {x: 875, y: 471} + m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} ---- !u!114 &7 +--- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -166,7 +144,7 @@ MonoBehaviour: m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} m_LastLoadedLayoutName: ---- !u!114 &8 +--- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -187,7 +165,189 @@ MonoBehaviour: height: 20 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 9} + - {fileID: 12} + - {fileID: 13} + - {fileID: 14} + m_Position: + serializedVersion: 2 + x: 0 + y: 30 + width: 1440 + height: 700 + m_MinSize: {x: 911, y: 442} + m_MaxSize: {x: 22006, y: 10021} + vertical: 0 + controlID: 4800 --- !u!114 &9 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 10} + - {fileID: 11} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 655 + height: 700 + m_MinSize: {x: 201, y: 442} + m_MaxSize: {x: 4001, y: 8042} + vertical: 1 + controlID: 4870 +--- !u!114 &10 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 655 + height: 359 + m_MinSize: {x: 201, y: 221} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 17} + m_Panes: + - {fileID: 17} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &11 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: GameView + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 359 + width: 655 + height: 341 + m_MinSize: {x: 201, y: 221} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 16} + m_Panes: + - {fileID: 16} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &12 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 655 + y: 0 + width: 231 + height: 700 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 18} + m_Panes: + - {fileID: 18} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &13 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 886 + y: 0 + width: 232 + height: 700 + m_MinSize: {x: 232, y: 271} + m_MaxSize: {x: 10002, y: 10021} + m_ActualView: {fileID: 19} + m_Panes: + - {fileID: 19} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 1118 + y: 0 + width: 322 + height: 700 + m_MinSize: {x: 276, y: 71} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 20} + m_Panes: + - {fileID: 20} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &15 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -203,17 +363,17 @@ MonoBehaviour: m_MaxSize: {x: 4000, y: 4000} m_TitleContent: m_Text: Console - m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, + m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 142 - y: 172 + x: 631 + y: 828 width: 1298 height: 610 m_ViewDataDictionary: {fileID: 0} ---- !u!114 &10 +--- !u!114 &16 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -229,15 +389,15 @@ MonoBehaviour: m_MaxSize: {x: 4000, y: 4000} m_TitleContent: m_Text: Game - m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, + m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 x: 19 - y: 83 - width: 1440 - height: 681 + y: 442 + width: 654 + height: 320 m_ViewDataDictionary: {fileID: 0} m_SerializedViewNames: [] m_SerializedViewValues: [] @@ -247,25 +407,25 @@ MonoBehaviour: m_ShowGizmos: 0 m_TargetDisplay: 0 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 960, y: 640} + m_TargetSize: {x: 1024, y: 768} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 - m_MaximizeOnPlay: 1 + m_MaximizeOnPlay: 0 m_UseMipMap: 0 m_VSyncEnabled: 0 m_Gizmos: 0 m_Stats: 0 - m_SelectedSizes: 08000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_SelectedSizes: 06000000000000000000000000000000000000000000000000000000000000000000000000000000 m_ZoomArea: m_HRangeLocked: 0 m_VRangeLocked: 0 hZoomLockedByDefault: 0 vZoomLockedByDefault: 0 - m_HBaseRangeMin: -240 - m_HBaseRangeMax: 240 - m_VBaseRangeMin: -160 - m_VBaseRangeMax: 160 + m_HBaseRangeMin: -512 + m_HBaseRangeMax: 512 + m_VBaseRangeMin: -384 + m_VBaseRangeMax: 384 m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMax: 1 m_VAllowExceedBaseRangeMin: 1 @@ -283,25 +443,368 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 1440 - height: 660 - m_Scale: {x: 2, y: 2} - m_Translation: {x: 720, y: 330} + width: 654 + height: 299 + m_Scale: {x: 0.3893229, y: 0.3893229} + m_Translation: {x: 327, y: 149.5} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -360 - y: -165 - width: 720 - height: 330 + x: -839.91974 + y: -384 + width: 1679.8395 + height: 768 m_MinimalGUI: 1 - m_defaultScale: 2 - m_LastWindowPixelSize: {x: 2880, y: 1362} + m_defaultScale: 0.3893229 + m_LastWindowPixelSize: {x: 654, y: 320} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000000000000000000 m_XRRenderMode: 0 m_RenderTexture: {fileID: 0} +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Scene + m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 19 + y: 83 + width: 654 + height: 338 + m_ViewDataDictionary: {fileID: 0} + m_ShowContextualTools: 0 + m_WindowGUID: 173a87bfcd91a409a986c8d7ee5123ce + m_Gizmos: 1 + m_SceneIsLit: 1 + m_SceneLighting: 1 + m_2DMode: 1 + m_isRotationLocked: 0 + m_PlayAudio: 0 + m_AudioPlay: 0 + m_Position: + m_Target: {x: 0, y: 0, z: 0} + speed: 2 + m_Value: {x: 0, y: 0, z: 0} + m_RenderMode: 0 + m_CameraMode: + drawMode: 0 + name: Shaded + section: Shading Mode + m_ValidateTrueMetals: 0 + m_DoValidateTrueMetals: 0 + m_ExposureSliderValue: 0 + m_ExposureSliderMax: 10 + m_SceneViewState: + showFog: 1 + showMaterialUpdate: 0 + showSkybox: 1 + showFlares: 1 + showImageEffects: 1 + showParticleSystems: 1 + m_Grid: + xGrid: + m_Fade: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 0, y: 0} + yGrid: + m_Fade: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 1, y: 1} + zGrid: + m_Fade: + m_Target: 1 + speed: 2 + m_Value: 1 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 1, y: 1} + m_ShowGrid: 1 + m_GridAxis: 1 + m_gridOpacity: 0.5 + m_Rotation: + m_Target: {x: 0, y: 0, z: 0, w: 1} + speed: 2 + m_Value: {x: 0, y: 0, z: 0, w: 1} + m_Size: + m_Target: 10 + speed: 2 + m_Value: 10 + m_Ortho: + m_Target: 1 + speed: 2 + m_Value: 1 + m_CameraSettings: + m_Speed: 1 + m_SpeedNormalized: 0.5 + m_SpeedMin: 0.01 + m_SpeedMax: 2 + m_EasingEnabled: 1 + m_EasingDuration: 0.4 + m_AccelerationEnabled: 1 + m_FieldOfViewHorizontalOrVertical: 60 + m_NearClip: 0.03 + m_FarClip: 10000 + m_DynamicClip: 1 + m_OcclusionCulling: 0 + m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + m_LastSceneViewOrtho: 0 + m_ReplacementShader: {fileID: 0} + m_ReplacementString: + m_SceneVisActive: 1 + m_LastLockedObject: {fileID: 0} + m_ViewIsLockedToObject: 0 +--- !u!114 &18 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Hierarchy + m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 674 + y: 83 + width: 229 + height: 679 + m_ViewDataDictionary: {fileID: 0} + m_SceneHierarchy: + m_TreeViewState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: ae3c0000 + m_LastClickedID: 15534 + m_ExpandedIDs: e8e3ffffae3c0000ca3c0000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 0 + m_ClientGUIView: {fileID: 12} + m_SearchString: + m_ExpandedScenes: [] + m_CurrenRootInstanceID: 0 + m_LockTracker: + m_IsLocked: 0 + m_CurrentSortingName: TransformSorting + m_WindowGUID: a0e2d077c3ae142578f10c4587073557 +--- !u!114 &19 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 230, y: 250} + m_MaxSize: {x: 10000, y: 10000} + m_TitleContent: + m_Text: Project + m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 905 + y: 83 + width: 230 + height: 679 + m_ViewDataDictionary: {fileID: 0} + m_SearchFilter: + m_NameFilter: + m_ClassNames: [] + m_AssetLabels: [] + m_AssetBundleNames: [] + m_VersionControlStates: [] + m_SoftLockControlStates: [] + m_ReferencingInstanceIDs: + m_SceneHandles: + m_ShowAllHits: 0 + m_SkipHidden: 0 + m_SearchArea: 1 + m_Folders: + - Assets + m_ViewMode: 0 + m_StartGridSize: 64 + m_LastFolders: [] + m_LastFoldersGridSize: -1 + m_LastProjectPath: C:\Users\miche\CMPUT-250-F24-Lab-3\CMPUT 250 W24 Lab 3 + m_LockTracker: + m_IsLocked: 0 + m_FolderTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: da3b0000 + m_LastClickedID: 15322 + m_ExpandedIDs: ffffffff000000000e3d0000ffffff7f + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_AssetTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: + m_LastClickedID: 0 + m_ExpandedIDs: ffffffff000000000e3d0000ffffff7f + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 13} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_ListAreaState: + m_SelectedInstanceIDs: + m_LastClickedInstanceID: 0 + m_HadKeyboardFocusLastEvent: 0 + m_ExpandedInstanceIDs: + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_NewAssetIndexInList: -1 + m_ScrollPosition: {x: 0, y: 0} + m_GridSize: 64 + m_SkipHiddenPackages: 0 + m_DirectoriesAreaWidth: 115 +--- !u!114 &20 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Inspector + m_Image: {fileID: -2667387946076563598, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 1137 + y: 83 + width: 321 + height: 679 + m_ViewDataDictionary: {fileID: 0} + m_OpenAddComponentMenu: 0 + m_ObjectsLockedBeforeSerialization: [] + m_InstanceIDsLockedBeforeSerialization: + m_LockTracker: + m_IsLocked: 0 + m_PreviewResizer: + m_CachedPref: -160 + m_ControlHash: -371814159 + m_PrefName: Preview_InspectorPreview + m_PreviewWindow: {fileID: 0} + m_LastInspectedObjectInstanceID: -1 + m_LastVerticalScrollValue: 0 diff --git a/CMPUT 250 W24 Lab 3/Library/CurrentMaximizeLayout.dwlt b/CMPUT 250 W24 Lab 3/Library/CurrentMaximizeLayout.dwlt index 4a7a56213..ee5e7b90e 100644 --- a/CMPUT 250 W24 Lab 3/Library/CurrentMaximizeLayout.dwlt +++ b/CMPUT 250 W24 Lab 3/Library/CurrentMaximizeLayout.dwlt @@ -23,10 +23,10 @@ MonoBehaviour: y: 30 width: 1440 height: 700 - m_MinSize: {x: 911, y: 421} - m_MaxSize: {x: 22006, y: 10021} + m_MinSize: {x: 910, y: 442} + m_MaxSize: {x: 22005, y: 10021} vertical: 0 - controlID: -1 + controlID: 4611 --- !u!114 &2 MonoBehaviour: m_ObjectHideFlags: 52 @@ -43,7 +43,7 @@ MonoBehaviour: m_MaxSize: {x: 4000, y: 4000} m_TitleContent: m_Text: Game - m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, + m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: @@ -61,7 +61,7 @@ MonoBehaviour: m_ShowGizmos: 0 m_TargetDisplay: 0 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 960, y: 640} + m_TargetSize: {x: 1024, y: 768} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 @@ -70,16 +70,16 @@ MonoBehaviour: m_VSyncEnabled: 0 m_Gizmos: 0 m_Stats: 0 - m_SelectedSizes: 08000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_SelectedSizes: 06000000000000000000000000000000000000000000000000000000000000000000000000000000 m_ZoomArea: m_HRangeLocked: 0 m_VRangeLocked: 0 hZoomLockedByDefault: 0 vZoomLockedByDefault: 0 - m_HBaseRangeMin: -240 - m_HBaseRangeMax: 240 - m_VBaseRangeMin: -160 - m_VBaseRangeMax: 160 + m_HBaseRangeMin: -512 + m_HBaseRangeMax: 512 + m_VBaseRangeMin: -384 + m_VBaseRangeMax: 384 m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMax: 1 m_VAllowExceedBaseRangeMin: 1 @@ -99,7 +99,7 @@ MonoBehaviour: y: 21 width: 654 height: 299 - m_Scale: {x: 0.934375, y: 0.934375} + m_Scale: {x: 0.3893229, y: 0.3893229} m_Translation: {x: 327, y: 149.5} m_MarginLeft: 0 m_MarginRight: 0 @@ -107,13 +107,13 @@ MonoBehaviour: m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -349.96655 - y: -160 - width: 699.9331 - height: 320 + x: -839.91974 + y: -384 + width: 1679.8395 + height: 768 m_MinimalGUI: 1 - m_defaultScale: 0.934375 - m_LastWindowPixelSize: {x: 1308, y: 640} + m_defaultScale: 0.3893229 + m_LastWindowPixelSize: {x: 654, y: 320} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000000000000000000 @@ -140,10 +140,10 @@ MonoBehaviour: y: 0 width: 655 height: 700 - m_MinSize: {x: 201, y: 421} - m_MaxSize: {x: 4001, y: 8021} + m_MinSize: {x: 201, y: 442} + m_MaxSize: {x: 4001, y: 8042} vertical: 1 - controlID: -1 + controlID: 4567 --- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 @@ -163,8 +163,8 @@ MonoBehaviour: y: 0 width: 655 height: 359 - m_MinSize: {x: 201, y: 221} - m_MaxSize: {x: 4001, y: 4021} + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 5} m_Panes: - {fileID: 5} @@ -186,7 +186,7 @@ MonoBehaviour: m_MaxSize: {x: 4000, y: 4000} m_TitleContent: m_Text: Scene - m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, + m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: @@ -353,7 +353,7 @@ MonoBehaviour: m_MaxSize: {x: 4000, y: 4000} m_TitleContent: m_Text: Hierarchy - m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, + m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: @@ -368,7 +368,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: d8f7ffff44f9ffff62fbffff + m_ExpandedIDs: e8e3ffffae3c0000ca3c0000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -411,8 +411,8 @@ MonoBehaviour: y: 0 width: 232 height: 700 - m_MinSize: {x: 232, y: 271} - m_MaxSize: {x: 10002, y: 10021} + m_MinSize: {x: 230, y: 250} + m_MaxSize: {x: 10000, y: 10000} m_ActualView: {fileID: 10} m_Panes: - {fileID: 10} @@ -434,7 +434,7 @@ MonoBehaviour: m_MaxSize: {x: 10000, y: 10000} m_TitleContent: m_Text: Project - m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, + m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: @@ -456,19 +456,20 @@ MonoBehaviour: m_ShowAllHits: 0 m_SkipHidden: 0 m_SearchArea: 1 - m_Folders: [] + m_Folders: + - Assets m_ViewMode: 0 m_StartGridSize: 64 m_LastFolders: [] m_LastFoldersGridSize: -1 - m_LastProjectPath: /Users/guzdial/Downloads/CMPUT 250 W24 Lab 3 + m_LastProjectPath: C:\Users\miche\CMPUT-250-F24-Lab-3\CMPUT 250 W24 Lab 3 m_LockTracker: m_IsLocked: 0 m_FolderTreeState: scrollPos: {x: 0, y: 0} m_SelectedIDs: da3b0000 m_LastClickedID: 15322 - m_ExpandedIDs: ffffffff9a4d0000 + m_ExpandedIDs: ffffffff000000000e3d0000ffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -494,9 +495,9 @@ MonoBehaviour: m_ResourceFile: m_AssetTreeState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: + m_SelectedIDs: ae3c0000 m_LastClickedID: 0 - m_ExpandedIDs: ffffffff9a4d0000 + m_ExpandedIDs: ffffffff000000000e3d0000ffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -512,7 +513,7 @@ MonoBehaviour: m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 1 - m_ClientGUIView: {fileID: 0} + m_ClientGUIView: {fileID: 9} m_SearchString: m_CreateAssetUtility: m_EndAction: {fileID: 0} @@ -521,8 +522,8 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_ListAreaState: - m_SelectedInstanceIDs: - m_LastClickedInstanceID: 0 + m_SelectedInstanceIDs: ae3c0000 + m_LastClickedInstanceID: 15534 m_HadKeyboardFocusLastEvent: 0 m_ExpandedInstanceIDs: m_RenameOverlay: @@ -571,8 +572,8 @@ MonoBehaviour: y: 0 width: 322 height: 700 - m_MinSize: {x: 276, y: 71} - m_MaxSize: {x: 4001, y: 4021} + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 12} m_Panes: - {fileID: 12} @@ -594,7 +595,7 @@ MonoBehaviour: m_MaxSize: {x: 4000, y: 4000} m_TitleContent: m_Text: Inspector - m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, + m_Image: {fileID: -2667387946076563598, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: @@ -614,5 +615,5 @@ MonoBehaviour: m_ControlHash: -371814159 m_PrefName: Preview_InspectorPreview m_PreviewWindow: {fileID: 0} - m_LastInspectedObjectInstanceID: -1 + m_LastInspectedObjectInstanceID: 15534 m_LastVerticalScrollValue: 0 diff --git a/CMPUT 250 W24 Lab 3/Library/EditorUserBuildSettings.asset b/CMPUT 250 W24 Lab 3/Library/EditorUserBuildSettings.asset index 891e52f99..bc84243f6 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/EditorUserBuildSettings.asset and b/CMPUT 250 W24 Lab 3/Library/EditorUserBuildSettings.asset differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Assembly-CSharp.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Assembly-CSharp.dll index 056c4ac86..7a73ab521 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Assembly-CSharp.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/BuiltinAssemblies.stamp b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/BuiltinAssemblies.stamp index 0f89ddf75..a80b2763d 100644 --- a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/BuiltinAssemblies.stamp +++ b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/BuiltinAssemblies.stamp @@ -1 +1 @@ -08d8c0e334456f00.08d8c0e334456f00 \ No newline at end of file +08d8b70e2a4c6500.08d8b70e1e60a300 \ No newline at end of file diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/PsdPlugin.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/PsdPlugin.dll index c208b4af6..103496455 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/PsdPlugin.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/PsdPlugin.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll index df6dab487..041fc40f5 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll index a4dd70ed6..ed1bf5a7a 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll index 40ea5bb2d..886b46413 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll index 613b2d985..2a0af63b2 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll index 1c5d55977..88b72ad75 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll index e1afc3997..a9f0ce95d 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll index 8df8d1076..81cbec13e 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll index 570598698..5ca7ee22b 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll index 32709b32b..20b473e33 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll index 0b814f600..70b6eabf0 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll index 16d62e048..24d45b4c0 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll index 3149d026f..ec9b76e24 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll index e1b46787d..0021bb842 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll index 84a9762aa..c70283f4f 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll index 3b6c5ef89..ef0a1b511 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll index 225b94032..4b327086e 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll index 336af934c..fc04d878d 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.dll index e37f27898..05ff790eb 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Rider.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Rider.Editor.dll index 6bac6ae6c..c4b47d013 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Rider.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Rider.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll index 8d3849f54..259b7aed8 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.dll index c4541dd33..302080c4b 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.Editor.dll index 935b925c8..502d81441 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.dll index 6eefd869c..5462bc7a4 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.VSCode.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.VSCode.Editor.dll index b57b34afc..8f84364f5 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.VSCode.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.VSCode.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.TestRunner.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.TestRunner.dll index ac4bf1486..d00c7f56e 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.TestRunner.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.TestRunner.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.UI.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.UI.dll index e952ef5de..d98f24283 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.UI.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.UI.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.TestRunner.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.TestRunner.dll index 8d8e3f837..d6f5c3661 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.TestRunner.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.TestRunner.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.UI.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.UI.dll index 6407729d6..566d58f6f 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.UI.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.UI.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/0/06b0d3aa0a7bd0a6802cdbd06608fc34.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/0/06b0d3aa0a7bd0a6802cdbd06608fc34.bin new file mode 100644 index 000000000..c2e0e6df4 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/0/06b0d3aa0a7bd0a6802cdbd06608fc34.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/0/06da9706b179fc09fd73f8e68f4bab00.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/0/06da9706b179fc09fd73f8e68f4bab00.bin new file mode 100644 index 000000000..82fe4202c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/0/06da9706b179fc09fd73f8e68f4bab00.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/0/0e072c511601d185ec2b69b51ca85dae.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/0/0e072c511601d185ec2b69b51ca85dae.bin new file mode 100644 index 000000000..6c1bb3905 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/0/0e072c511601d185ec2b69b51ca85dae.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/0/0e7546fc35384c256f190bb179c9c108.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/0/0e7546fc35384c256f190bb179c9c108.bin new file mode 100644 index 000000000..4f113fe5f Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/0/0e7546fc35384c256f190bb179c9c108.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/1/1bfdd95221157b77368384fc9e408afb.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/1/1bfdd95221157b77368384fc9e408afb.bin new file mode 100644 index 000000000..2f3f26046 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/1/1bfdd95221157b77368384fc9e408afb.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/2/20ed51925fdc2a739215ef04111534e3.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/2/20ed51925fdc2a739215ef04111534e3.bin new file mode 100644 index 000000000..82fe4202c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/2/20ed51925fdc2a739215ef04111534e3.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/2/25a4c93ce4ee52acd6ec95e6c96c4f73.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/2/25a4c93ce4ee52acd6ec95e6c96c4f73.bin new file mode 100644 index 000000000..4c7e897dd Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/2/25a4c93ce4ee52acd6ec95e6c96c4f73.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/2/2c7c6c924992e3fc6c119f5e299d1c6d.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/2/2c7c6c924992e3fc6c119f5e299d1c6d.bin new file mode 100644 index 000000000..ef89b9081 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/2/2c7c6c924992e3fc6c119f5e299d1c6d.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/3/343bf7c27e1509aa56d17b67c5298934.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/3/343bf7c27e1509aa56d17b67c5298934.bin new file mode 100644 index 000000000..333be42d2 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/3/343bf7c27e1509aa56d17b67c5298934.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/3/3fd32d1b033f5aea988e46d4c600c0ff.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/3/3fd32d1b033f5aea988e46d4c600c0ff.bin new file mode 100644 index 000000000..144e09d03 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/3/3fd32d1b033f5aea988e46d4c600c0ff.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/4/453490a2129aab43b0f76fdb2d14f241.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/4/453490a2129aab43b0f76fdb2d14f241.bin new file mode 100644 index 000000000..2d2c061b5 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/4/453490a2129aab43b0f76fdb2d14f241.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/4/48439258b8d861b245308a6efb29abb2.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/4/48439258b8d861b245308a6efb29abb2.bin new file mode 100644 index 000000000..b0b1c7d03 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/4/48439258b8d861b245308a6efb29abb2.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/4/4dbe25f884fa1d5c8728f0f8a0cdb776.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/4/4dbe25f884fa1d5c8728f0f8a0cdb776.bin new file mode 100644 index 000000000..2d2c061b5 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/4/4dbe25f884fa1d5c8728f0f8a0cdb776.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/6/6a740e7f33b3b83932adb736cbfee1aa.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/6/6a740e7f33b3b83932adb736cbfee1aa.bin new file mode 100644 index 000000000..6c1bb3905 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/6/6a740e7f33b3b83932adb736cbfee1aa.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/6/6d8476e764fa117c3fb88c5e9e079952.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/6/6d8476e764fa117c3fb88c5e9e079952.bin new file mode 100644 index 000000000..0e71e148e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/6/6d8476e764fa117c3fb88c5e9e079952.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/7/724393b113f8068ddb530bfba8736966.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/7/724393b113f8068ddb530bfba8736966.bin new file mode 100644 index 000000000..9a2515191 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/7/724393b113f8068ddb530bfba8736966.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/7/76d9f42bfba16401bbb894780a897782.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/7/76d9f42bfba16401bbb894780a897782.bin new file mode 100644 index 000000000..f52196a80 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/7/76d9f42bfba16401bbb894780a897782.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/7/7ab297cc4117b13404c6967f4f51700c.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/7/7ab297cc4117b13404c6967f4f51700c.bin new file mode 100644 index 000000000..7f92af2ef Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/7/7ab297cc4117b13404c6967f4f51700c.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/8/8952cde754c672831f9b0e0c1b3bbfde.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/8/8952cde754c672831f9b0e0c1b3bbfde.bin new file mode 100644 index 000000000..8a7189770 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/8/8952cde754c672831f9b0e0c1b3bbfde.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/8/8c8af63ac323038c4915a2d9ca6dae90.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/8/8c8af63ac323038c4915a2d9ca6dae90.bin new file mode 100644 index 000000000..692e692d4 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/8/8c8af63ac323038c4915a2d9ca6dae90.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/8/8fdea7121e2f85972bf7814a2e2a922d.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/8/8fdea7121e2f85972bf7814a2e2a922d.bin new file mode 100644 index 000000000..ab87afac5 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/8/8fdea7121e2f85972bf7814a2e2a922d.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/9/96c4910a2a2020bdef4f5eafb3e30406.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/9/96c4910a2a2020bdef4f5eafb3e30406.bin new file mode 100644 index 000000000..ab87afac5 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/9/96c4910a2a2020bdef4f5eafb3e30406.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/9/9745f0c8122cc7ff9d6a99c9933de53f.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/9/9745f0c8122cc7ff9d6a99c9933de53f.bin new file mode 100644 index 000000000..333be42d2 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/9/9745f0c8122cc7ff9d6a99c9933de53f.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/EditorEncounteredVariants b/CMPUT 250 W24 Lab 3/Library/ShaderCache/EditorEncounteredVariants index 38117e95c..65c0fbdeb 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ShaderCache/EditorEncounteredVariants and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/EditorEncounteredVariants differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/a/ae6a7123e10cac7b881d88428ad06215.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/a/ae6a7123e10cac7b881d88428ad06215.bin new file mode 100644 index 000000000..b0b1c7d03 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/a/ae6a7123e10cac7b881d88428ad06215.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/d/d705caecbb39cf68d71ee0172ca04968.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/d/d705caecbb39cf68d71ee0172ca04968.bin new file mode 100644 index 000000000..144e09d03 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/d/d705caecbb39cf68d71ee0172ca04968.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/d/d8655370456d41fbfd8c62f8c6ef2587.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/d/d8655370456d41fbfd8c62f8c6ef2587.bin new file mode 100644 index 000000000..c72d5340b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/d/d8655370456d41fbfd8c62f8c6ef2587.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/d/dbfd492158b04eae644be86b220de4f2.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/d/dbfd492158b04eae644be86b220de4f2.bin new file mode 100644 index 000000000..9a2515191 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/d/dbfd492158b04eae644be86b220de4f2.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/e/e8412c9d2f2e3de171ef25bde9f612b6.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/e/e8412c9d2f2e3de171ef25bde9f612b6.bin new file mode 100644 index 000000000..2f3f26046 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/e/e8412c9d2f2e3de171ef25bde9f612b6.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/e/edc2143ae5d8f4175787f366325a50c4.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/e/edc2143ae5d8f4175787f366325a50c4.bin new file mode 100644 index 000000000..692e692d4 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/e/edc2143ae5d8f4175787f366325a50c4.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/f/f7d2a9f1f862b6624e73d6c8eee302f7.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/f/f7d2a9f1f862b6624e73d6c8eee302f7.bin new file mode 100644 index 000000000..7f92af2ef Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/f/f7d2a9f1f862b6624e73d6c8eee302f7.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/f/f906412a9b829f5afe7bb8d46ec205ed.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/f/f906412a9b829f5afe7bb8d46ec205ed.bin new file mode 100644 index 000000000..4c7e897dd Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/f/f906412a9b829f5afe7bb8d46ec205ed.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/f/f9a1d9606d4633d772f1b83d29fad5d4.bin b/CMPUT 250 W24 Lab 3/Library/ShaderCache/f/f9a1d9606d4633d772f1b83d29fad5d4.bin new file mode 100644 index 000000000..4067bf15b Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/f/f9a1d9606d4633d772f1b83d29fad5d4.bin differ diff --git a/CMPUT 250 W24 Lab 3/Library/SourceAssetDB b/CMPUT 250 W24 Lab 3/Library/SourceAssetDB index 3be50cff3..e01d487ed 100755 Binary files a/CMPUT 250 W24 Lab 3/Library/SourceAssetDB and b/CMPUT 250 W24 Lab 3/Library/SourceAssetDB differ diff --git a/CMPUT 250 W24 Lab 3/Library/SourceAssetDB-lock b/CMPUT 250 W24 Lab 3/Library/SourceAssetDB-lock index de130a9a0..b5cf884f4 100755 Binary files a/CMPUT 250 W24 Lab 3/Library/SourceAssetDB-lock and b/CMPUT 250 W24 Lab 3/Library/SourceAssetDB-lock differ diff --git a/CMPUT 250 W24 Lab 3/Library/StateCache/Hierarchy/a0e2d0-mainStage.json b/CMPUT 250 W24 Lab 3/Library/StateCache/Hierarchy/a0e2d0-mainStage.json index a140c34ad..4461fa5f1 100644 --- a/CMPUT 250 W24 Lab 3/Library/StateCache/Hierarchy/a0e2d0-mainStage.json +++ b/CMPUT 250 W24 Lab 3/Library/StateCache/Hierarchy/a0e2d0-mainStage.json @@ -1 +1 @@ -{"m_ExpandedPrefabGameObjectFileIDs":[],"m_ExpandedSceneGameObjectInstanceIDs":[-2088,-1724,-1182],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0} \ No newline at end of file +{"m_ExpandedPrefabGameObjectFileIDs":[],"m_ExpandedSceneGameObjectInstanceIDs":[],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0} \ No newline at end of file diff --git a/CMPUT 250 W24 Lab 3/Library/expandedItems b/CMPUT 250 W24 Lab 3/Library/expandedItems index e917ba501..97c2665e9 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/expandedItems and b/CMPUT 250 W24 Lab 3/Library/expandedItems differ diff --git a/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe0.log b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe0.log new file mode 100644 index 000000000..3c5c6bddf --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe0.log @@ -0,0 +1,58 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2019.4.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.4.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler +Cmd: compileSnippet + api=4 type=0 insize=1582 outsize=690 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=1582 outsize=354 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=5029 outsize=1138 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=5029 outsize=3534 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=5029 outsize=1138 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=5029 outsize=3534 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=7853 outsize=1138 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=7853 outsize=4770 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=7853 outsize=1138 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=7853 outsize=4770 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=1341 outsize=790 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=1341 outsize=402 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=1341 outsize=790 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=1341 outsize=402 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=1878 outsize=1082 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=1878 outsize=778 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=1878 outsize=1082 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=1878 outsize=778 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=1842 outsize=1082 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=1842 outsize=798 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=1842 outsize=1082 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=1842 outsize=798 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=1701 outsize=1094 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=1701 outsize=522 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=1701 outsize=1094 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=1701 outsize=522 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=0 insize=4140 outsize=1342 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 +Cmd: compileSnippet + api=4 type=1 insize=4140 outsize=1026 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 diff --git a/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe1.log b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe1.log new file mode 100644 index 000000000..3ace48f02 --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe1.log @@ -0,0 +1,4 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2019.4.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.4.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler +Cmd: compileSnippet + api=4 type=1 insize=731 outsize=574 kw=ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 diff --git a/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe2.log b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe2.log new file mode 100644 index 000000000..ba3f95afa --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe2.log @@ -0,0 +1,4 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2019.4.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.4.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler +Cmd: compileSnippet + api=4 type=0 insize=731 outsize=858 kw=ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 diff --git a/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe3.log b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe3.log new file mode 100644 index 000000000..07d60e41c --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe3.log @@ -0,0 +1,2 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2019.4.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.4.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler diff --git a/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe4.log b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe4.log new file mode 100644 index 000000000..a09b60bae --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe4.log @@ -0,0 +1,4 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2019.4.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.4.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler +Cmd: compileSnippet + api=4 type=1 insize=2984 outsize=470 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 diff --git a/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe5.log b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe5.log new file mode 100644 index 000000000..75a8d884e --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler.exe5.log @@ -0,0 +1,4 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2019.4.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2019.4.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler +Cmd: compileSnippet + api=4 type=0 insize=2984 outsize=1306 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 diff --git a/CMPUT 250 W24 Lab 3/obj/Debug/.NETFramework,Version=v4.7.1.AssemblyAttributes.cs b/CMPUT 250 W24 Lab 3/obj/Debug/.NETFramework,Version=v4.7.1.AssemblyAttributes.cs new file mode 100644 index 000000000..2afc03123 --- /dev/null +++ b/CMPUT 250 W24 Lab 3/obj/Debug/.NETFramework,Version=v4.7.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.1", FrameworkDisplayName = ".NET Framework 4.7.1")] diff --git a/CMPUT 250 W24 Lab 3/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache b/CMPUT 250 W24 Lab 3/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache new file mode 100644 index 000000000..13a152d17 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache differ diff --git a/CMPUT 250 W24 Lab 3/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/CMPUT 250 W24 Lab 3/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 000000000..81b9ba49c Binary files /dev/null and b/CMPUT 250 W24 Lab 3/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ