Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Android and LocalizationSettings.SelectedLocale

Discussion in 'Localization Tools' started by Alexis-Dev, Jan 28, 2020.

  1. Alexis-Dev

    Alexis-Dev

    Joined:
    Apr 16, 2019
    Posts:
    121
    Hello,

    I would to know if the Localisation package work on Android (and iOS)?

    When I try to use LocalizationSettings.SelectedLocale, I have this error on Android:

    Here the code:
    Code (CSharp):
    1. private void LocaleSelected(int index)
    2. {
    3.      LocalizationSettings.SelectedLocale = LocalizationSettings.AvailableLocales.Locales[index];
    4. }
    Best,
    Alexis
     
  2. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    rozgar23 likes this.
  3. Alexis-Dev

    Alexis-Dev

    Joined:
    Apr 16, 2019
    Posts:
    121
    Oh!

    I forgot this step...

    The package work in Editor without building addressable, so I didn't this step...

    Thanks! :)
     
    karl_jones likes this.
  4. AngelBeatsZzz

    AngelBeatsZzz

    Joined:
    Nov 24, 2017
    Posts:
    239
    Hi, I build applications on IOS but the language has not changed according to the system language.

    I use 'Unity2019.3.0f6' + 'Localization0.6.0-preview', I have run the 'Default Build Script' command of the 'Addressables Groups' window and added several localization languages correctly. The language can be changed automatically in the Unity editor.

    Do I need additional settings for automatic language switching on IOS?
     
  5. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    You want it to default to the system language on iOS?

    This is how the System Selector works:

    Code (csharp):
    1. if (Application.systemLanguage != SystemLanguage.Unknown)
    2. {
    3. locale = availableLocales.GetLocale(Application.systemLanguage);
    4. }
    If that fails it then checks the CultureInfo

    Code (csharp):
    1. var cultureInfo = CultureInfo.CurrentUICulture;
    2. locale = availableLocales.GetLocale(cultureInfo);
    Check what the values of Application.systemLanguage and CultureInfo.CurrentUICulture are, do they match the languages you have available?
     
    AngelBeatsZzz likes this.
  6. AngelBeatsZzz

    AngelBeatsZzz

    Joined:
    Nov 24, 2017
    Posts:
    239
    It works, thank you. I use ‘CultureInfo.CurrentUICulture’ and get a match.
     
  7. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    Why was it failing for you?
    Did you need to write custom code to do the match? The system selector should be finding it.
     
  8. AngelBeatsZzz

    AngelBeatsZzz

    Joined:
    Nov 24, 2017
    Posts:
    239
    I don‘t know. I think my settings should be correct, but the language will not change automatically on my IOS(13.3.1). I put 'GetLocale (cultureInfo)' in 'Awake ()' and it worked.
     
    Last edited: Feb 11, 2020
  9. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    Do you know what the value of Application.systemLanguage was?
    Was it the same as the CultureInfo? Maybe we need to swap the order around so it checks CultureInfo first.
     
  10. AngelBeatsZzz

    AngelBeatsZzz

    Joined:
    Nov 24, 2017
    Posts:
    239
    I created an empty project for testing and added three languages (English, Simplified Chinese, and French). I did not use ‘availableLocales.GetLocale (cultureInfo)’ in Awake (). I switched the system language of IOS for testing. As a result, Simplified Chinese did not change automatically in the game, English and French changed automatically in the game.
     
    Last edited: Feb 12, 2020
    karl_jones likes this.
  11. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    Thanks, thats really helpful. I'll look into it, could be a bug.
     
    AngelBeatsZzz likes this.
  12. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    Hi,
    0.6.1-preview is released now, this includes a change that should fix your issues. Please let me know if it does not.
     
    Prodigga likes this.
  13. Eljodiopapa

    Eljodiopapa

    Joined:
    May 2, 2018
    Posts:
    4
    Hi!

    I'm new on Unity and I saw some videos of how add assets to addressable, but I don't know how add the location address to Android :(

    Thanks!
     
  14. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    You want to add localized assets or just normal addressable assets?
    Localized are done through the asset table. Have you looked at the docs or the webinar video?
     
  15. Eljodiopapa

    Eljodiopapa

    Joined:
    May 2, 2018
    Posts:
    4
    My problem was that I forget to build the Addresseables to work in android, srry :(

    (For someone with this problem)
    • Window -> Asset Manager ->Addresseables -> Groups -> Build -> New build
    But now I have a little blink when I load the texts
    When my game starts I preload the locales with
    Code (CSharp):
    1. LocalizationSettings.InitializationOperation
    but when the scene loads and any text should appear, it tooks a little milliseconds to load and it causes a blink

    Sorry if you answer this question a lot of times... but I don't find any working solution for me

    Exists any method to wait for a whole load to avoid these behaviors?

    P.D Happy new year!
     
    DImadron and GadOleg like this.
  16. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    Do you go straight into the scene or do you have a menu/loading scene?
    The preloading needs time to complete as it's asynchronous. A simple loading screen screen would work. Wait for the LocalisationSettings.InitializationOperation to finish
     
    Eljodiopapa likes this.
  17. Eljodiopapa

    Eljodiopapa

    Joined:
    May 2, 2018
    Posts:
    4
    Yes, I have a loading screen with this code

    Code (CSharp):
    1. IEnumerator Start()
    2.     {
    3.         yield return LocalizationSettings.InitializationOperation;
    4.  
    5.         // Begin to load the Scene you specify
    6.         AsyncOperation asyncOperation = SceneManager.LoadSceneAsync("MainMenuScene");
    7.  
    8.         // Don't let the Scene activate until you allow it to
    9.         asyncOperation.allowSceneActivation = false;
    10.  
    11.         // When the load is still in progress, output the Text and progress bar
    12.         while (!asyncOperation.isDone)
    13.         {
    14.             // Output the current progress
    15.             progressText.text = "Loading progress: " + (asyncOperation.progress * 100) + "%";
    16.  
    17.             // Check if the load has finished
    18.             if (asyncOperation.progress >= 0.9f)
    19.             {
    20.                 // Change the Text to show the Scene is ready
    21.                 asyncOperation.allowSceneActivation = true;
    22.             }
    23.  
    24.             yield return null;
    25.         }
    26.     }
    but when the new scene loads (MainMenuScene), all buttons appears without text and some milliseconds after the text appears

    (I tried even with 'yield return new WaitSeconds(10)' to wait more time, but the same blink happend on buttons)
     
  18. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    Can you share the project?
    Does this happen in the Editor or just Android?
     
  19. Eljodiopapa

    Eljodiopapa

    Joined:
    May 2, 2018
    Posts:
    4
    Only happen on Android, I don't know if because the computere is faster and I can't see this blink or because on editor does not happend.

    And the project... I'm not the only owner and the project have any private resources.
    But if you don't know what could be the problem without the code don't worry, you helped a lot without all data ;)

    It really is my problem jajaja If finally I find any solution, I will post here to share it with all of you, maybe someone have the same problem

    P.D: If this help you to improve the code, I know that the location project is still in preview, but for newe people is a little dificcult to start using it, at least in my case
     
  20. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    Does the problem happen in a new project? If it does then feel free to file a bug report so we can look into it.
     
  21. GadOleg

    GadOleg

    Joined:
    Nov 13, 2019
    Posts:
    58
    I'm new to programming. I have a problem with flickering when starting the program. Initially, the program text is written in English. When you start in German, the labels appear first in English, then the translation starts. This problem appears on android, in principle, and in the editor there is a slight delay when loading the project. Have tried to implement a delay before the download is complete:
    Code (CSharp):
    1.     IEnumerator Start()
    2.     {
    3.         while (!LocalizationSettings.InitializationOperation.IsDone)
    4.         {
    5.             yield return LocalizationSettings.InitializationOperation;
    6.         }
    7.     }
    Is this the way to do it?
     
  22. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    Yes, that should work. Once the InitializationOperation is finished then getting a localized value should be immediate and not require any additional frames. If this is not the case then could you file a bug report so we can look into it?
     
  23. cyrexStudio

    cyrexStudio

    Joined:
    Jun 6, 2019
    Posts:
    8
    I can working on Unity Editor the Localization Package but when i try on my android phone, doesn't work. I cannot change the language. Please help me
     
  24. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
  25. cyrexStudio

    cyrexStudio

    Joined:
    Jun 6, 2019
    Posts:
    8
  26. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    Switch the platform to Android in the build settings and then navigate to
    Window/Asset Management/Addressables/Groups
    Select Build/New Build/Default Build.

    Now build the game
     
  27. cyrexStudio

    cyrexStudio

    Joined:
    Jun 6, 2019
    Posts:
    8
    Yes, I tried but it didn't work. I switched the platform and changed New Build/Default Build and built the game but it didn't
     
  28. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    What do you mean by this? You cant see the language selection menu or when you change the language nothing happens?
     
  29. cyrexStudio

    cyrexStudio

    Joined:
    Jun 6, 2019
    Posts:
    8
    I changed the language but nothing happens
     
  30. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    How do you change the language?
    Can you share the editor log?
     
  31. cyrexStudio

    cyrexStudio

    Joined:
    Jun 6, 2019
    Posts:
    8
    All editor log:

    [Licensing::Module] Channel doesn't exist: "LicenseClient-Dell"
    [Licensing::Module] Successfully launched the LicensingClient (PId: 19736)
    [Licensing::Module] Timed-out after 5.21s, waiting for channel: "LicenseClient-Dell"
    IPC channel to LicensingClient doesn't exist; falling back to Legacy licensing

    LICENSE SYSTEM [2021119 16:33:18] Next license update check is after 2020-09-11T15:59:19


    LICENSE SYSTEM [2021119 16:33:18] Current license is already valid and activated. Skipping license activation process (Provided username/password will be ignored).
    Built from '2020.2/release' branch; Version is '2020.2.1f1 (270dd8c3da1c) revision 2559448'; Using compiler version '192528614'; Build Type 'Release'
    OS: 'Windows 10 (10.0.0) 64bit' Language: 'tr' Physical Memory: 8095 MB
    BatchMode: 0, IsHumanControllingUs: 1, StartBugReporterOnCrash: 1, Is64bit: 1, IsPro: 0
    [Package Manager] Server::Start -- Port 51706 was selected

    COMMAND LINE ARGUMENTS:
    C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Unity.exe
    -projectpath
    C:/Users/Dell/Desktop/atii/unity/NumberEstimateV3
    -useHub
    -hubIPC
    -cloudEnvironment
    production
    -hubSessionId
    31c5bfc0-5a32-11eb-ae57-fdd67eab28c9
    -accessToken
    g5nPxr1kWl2003OL3pPHn1Na6IxXxTKJENZicRkcW6Y011f
    Successfully changed project path to: C:/Users/Dell/Desktop/atii/unity/NumberEstimateV3
    C:/Users/Dell/Desktop/atii/unity/NumberEstimateV3
    Using Asset Import Pipeline V2.
    [Package Manager] Restoring resolved packages state from cache
    [Package Manager] Done checking package constraints in 0.00s seconds
    [Package Manager]
    Registered 58 packages:
    Packages from [https://packages.unity.com]:
    com.unity.2d.animation@5.0.3 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.2d.animation@5.0.3)
    com.unity.2d.pixel-perfect@4.0.1 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.2d.pixel-perfect@4.0.1)
    com.unity.2d.psdimporter@4.0.2 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.2d.psdimporter@4.0.2)
    com.unity.2d.spriteshape@5.1.0 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.2d.spriteshape@5.1.0)
    com.unity.collab-proxy@1.3.9 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.collab-proxy@1.3.9)
    com.unity.ide.rider@2.0.7 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.ide.rider@2.0.7)
    com.unity.ide.visualstudio@2.0.5 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.ide.visualstudio@2.0.5)
    com.unity.ide.vscode@1.2.3 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.ide.vscode@1.2.3)
    com.unity.localization@0.9.0-preview (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.localization@0.9.0-preview)
    com.unity.mobile.android-logcat@1.2.0 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.mobile.android-logcat@1.2.0)
    com.unity.mobile.notifications@1.3.2 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.mobile.notifications@1.3.2)
    com.unity.test-framework@1.1.20 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.test-framework@1.1.20)
    com.unity.textmeshpro@3.0.1 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.textmeshpro@3.0.1)
    com.unity.timeline@1.4.4 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.timeline@1.4.4)
    com.unity.ext.nunit@1.0.6 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.ext.nunit@1.0.6)
    com.unity.addressables@1.16.6 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.addressables@1.16.6)
    com.unity.nuget.newtonsoft-json@2.0.0 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.nuget.newtonsoft-json@2.0.0)
    com.unity.mathematics@1.1.0 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.mathematics@1.1.0)
    com.unity.2d.common@4.0.3 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.2d.common@4.0.3)
    com.unity.2d.path@4.0.1 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.2d.path@4.0.1)
    com.unity.scriptablebuildpipeline@1.13.1 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.unity.scriptablebuildpipeline@1.13.1)
    Packages from [https://unityregistry-pa.googleapis.com]:
    com.google.external-dependency-manager@1.2.163 (location: C:\Users\Dell\Desktop\atii\unity\NumberEstimateV3\Library\PackageCache\com.google.external-dependency-manager@1.2.163)
    Built-in packages:
    com.unity.2d.sprite@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.2d.sprite)
    com.unity.2d.tilemap@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.2d.tilemap)
    com.unity.ugui@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.ugui)
    com.unity.modules.ai@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.ai)
    com.unity.modules.androidjni@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.androidjni)
    com.unity.modules.animation@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.animation)
    com.unity.modules.assetbundle@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.assetbundle)
    com.unity.modules.audio@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.audio)
    com.unity.modules.cloth@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.cloth)
    com.unity.modules.director@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.director)
    com.unity.modules.imageconversion@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.imageconversion)
    com.unity.modules.imgui@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.imgui)
    com.unity.modules.jsonserialize@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.jsonserialize)
    com.unity.modules.particlesystem@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.particlesystem)
    com.unity.modules.physics@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.physics)
    com.unity.modules.physics2d@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.physics2d)
    com.unity.modules.screencapture@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.screencapture)
    com.unity.modules.terrain@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.terrain)
    com.unity.modules.terrainphysics@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.terrainphysics)
    com.unity.modules.tilemap@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.tilemap)
    com.unity.modules.ui@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.ui)
    com.unity.modules.uielements@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.uielements)
    com.unity.modules.umbra@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.umbra)
    com.unity.modules.unityanalytics@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unityanalytics)
    com.unity.modules.unitywebrequest@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequest)
    com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequestassetbundle)
    com.unity.modules.unitywebrequestaudio@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequestaudio)
    com.unity.modules.unitywebrequesttexture@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequesttexture)
    com.unity.modules.unitywebrequestwww@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequestwww)
    com.unity.modules.vehicles@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.vehicles)
    com.unity.modules.video@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.video)
    com.unity.modules.vr@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.vr)
    com.unity.modules.wind@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.wind)
    com.unity.modules.xr@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.xr)
    com.unity.modules.subsystems@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.subsystems)
    com.unity.modules.uielementsnative@1.0.0 (location: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.uielementsnative)

    [Subsystems] No new subsystems found in resolved package list.
    Package Manager log level set to [2]
    [Package Manager] Done registering packages in 0.56s seconds
    Refreshing native plugins compatible for Editor in 122.17 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    IsTimeToCheckForNewEditor: Update time 1611049550 current 1611063211
    Initialize engine version: 2020.2.1f1 (270dd8c3da1c)
    [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.2.1f1/Editor/Data/Resources/UnitySubsystems
    [Subsystems] Discovering subsystems at path C:/Users/Dell/Desktop/atii/unity/NumberEstimateV3/Assets
    GfxDevice: creating device client; threaded=1
    Direct3D:
    Version: Direct3D 11.0 [level 11.1]
    Renderer: Intel(R) HD Graphics Family (ID=0xa16)
    Vendor:
    VRAM: 2048 MB
    Driver: 20.19.15.4531
    Initialize mono
    Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.2.1f1/Editor/Data/Managed'
    Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.2.1f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
    Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.2.1f1/Editor/Data/MonoBleedingEdge/etc'
    Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56740
    AcceleratorClientConnectionCallback - disconnected - :0
    Begin MonoManager ReloadAssembly
    Registering precompiled unity dll's ...
    Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.2.1f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
    Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.2.1f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll
    Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.2.1f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
    Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.2.1f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll
    Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.2.1f1/Editor/Data/PlaybackEngines/AppleTVSupport/UnityEditor.AppleTV.Extensions.dll
    Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.2.1f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
    Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.2.1f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll
    Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.2.1f1/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll
    Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.2.1f1/Editor/Data/PlaybackEngines/LuminSupport/UnityEditor.Lumin.Extensions.dll
    Registered in 0.009402 seconds.
    Native extension for Lumin target not found
    Native extension for UWP target not found
    Native extension for LinuxStandalone target not found
    Native extension for WindowsStandalone target not found
    [usbmuxd] Start listen thread
    [usbmuxd] Listen thread started
    Native extension for AppleTV target not found
    [usbmuxd] Start listen thread
    [usbmuxd] Listen thread started
    Native extension for iOS target not found
    Native extension for Android target not found
    Native extension for OSXStandalone target not found
    Native extension for WebGL target not found
    Refreshing native plugins compatible for Editor in 149.65 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    Invoked RoslynAnalysisRunner static constructor.
    RoslynAnalysisRunner will not be running.
    RoslynAnalysisRunner has terminated.
    Mono: successfully reloaded assembly
    - Completed reload, in 134.215 seconds
    Platform modules already initialized, skipping
    Validating Project structure ... 0.008143 seconds.
    Shader import version has changed; will reimport all shaders...
    Upgrading shader files ...0.486565 seconds.
    Application.AssetDatabase Initial Script Refresh Start
    Registering precompiled user dll's ...
    Registered in 0.013157 seconds.
    AssetDatabase: script compilation time: 0.243981s
    Begin MonoManager ReloadAssembly
    EditorUpdateCheck: Response {"updateinterval":3600} updateurl = interval = 3600
    Native extension for Lumin target not found
    Native extension for UWP target not found
    Native extension for LinuxStandalone target not found
    Native extension for WindowsStandalone target not found
    Native extension for AppleTV target not found
    Native extension for iOS target not found
    Native extension for Android target not found
    Native extension for OSXStandalone target not found
    Native extension for WebGL target not found
    Refreshing native plugins compatible for Editor in 82.34 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    Invoked RoslynAnalysisRunner static constructor.
    RoslynAnalysisRunner will not be running.
    RoslynAnalysisRunner has terminated.
    Mono: successfully reloaded assembly
    - Completed reload, in 2.331 seconds
    Platform modules already initialized, skipping
    RefreshInfo: InitialScriptRefreshV2(NoUpdateAssetOptions) scanfilter: ... 1 filters
    RefreshProfiler: Total: 16587.512ms
    InvokeBeforeRefreshCallbacks: 1.039ms
    ApplyChangesToAssetFolders: 0.105ms
    Scan: 4755.008ms
    OnSourceAssetsModified: 0.001ms
    InitializeImportedAssetsSnapshot: 0.402ms
    GetAllGuidsForCategorization: 0.811ms
    CategorizeAssets: 77.621ms
    ImportAndPostprocessOutOfDateAssets: 11714.948ms (11467.826ms without children)
    CompileScripts: 244.938ms
    PostProcessAllAssets: 0.000ms
    EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.481ms
    InitializingProgressBar: 0.461ms
    PostProcessAllAssetNotificationsAddChangedAssets: 0.548ms
    RestoreLoadedAssetsState: 0.694ms
    ReloadSourceAssets: 1.052ms
    UnloadImportedAssets: 0.022ms
    Hotreload: 1.071ms
    FixTempGuids: 0.007ms
    GatherAllCurrentPrimaryArtifactRevisions: 0.000ms
    UnloadStreamsBegin: 1.222ms
    LoadedImportedAssetsSnapshotReleaseGCHandles: 0.032ms
    GetLoadedSourceAssetsSnapshot: 0.779ms
    PersistCurrentRevisions: 0.936ms
    UnloadStreamsEnd: 19.762ms
    GenerateScriptTypeHashes: 0.126ms
    Untracked: 12.692ms
    Application.AssetDatabase Initial Script Refresh End
    Application.AssetDatabase.Refresh Start
    Refresh completed in 0.110068 seconds.
    RefreshInfo: RefreshV2(ForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 109.455ms
    Application.AssetDatabase.Refresh End
    RefreshInfo: StopAssetImportingV2(ForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 17.095ms
    Refresh completed in 0.113050 seconds.
    RefreshInfo: RefreshV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 112.126ms
    Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds
    Initializing Unity extensions:
    Unloading 131 Unused Serialized files (Serialized files now loaded: 0)
    ProgressiveSceneManager::Cancel()
    Loaded scene 'Assets/Scenes/ayarlar.unity'
    Deserialize: 264.781 ms
    Integration: 300.910 ms
    Integration of assets: 15.297 ms
    Thread Wait Time: 238.232 ms
    Total Operation Time: 819.219 ms
    System memory in use before: 116.3 MB.
    System memory in use after: 115.8 MB.

    Unloading 241 unused Assets to reduce memory usage. Loaded Objects now: 3435.
    Total: 8.307700 ms (FindLiveObjects: 0.370100 ms CreateObjectMapping: 0.264200 ms MarkObjects: 6.747900 ms DeleteObjects: 0.923700 ms)

    [MODES] ModeService[none].Initialize
    [MODES] ModeService[none].LoadModes
    [MODES] Loading mode Default (0) for mode-current-id-NumberEstimate
    [LAYOUT] About to load Library/CurrentLayout-default.dwlt, keepMainWindow=False
    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    [MODES] ModeService[default].InitializeCurrentMode
    [MODES] ModeService[default].UpdateModeMenus
    <RI> Initializing input.

    <RI> Input initialized.

    D3D11 device created for Microsoft Media Foundation video decoding.
    [Project] Loading completed in 191.381 seconds
    Project init time: 1.851 seconds
    Template init time: 0.000 seconds
    Package Manager init time: 0.000 seconds
    Asset Database init time: 0.000 seconds
    Global illumination init time: 0.000 seconds
    Assemblies load time: 0.000 seconds
    Unity extensions init time: 0.002 seconds
    Asset Database refresh time: 0.000 seconds
    Scene opening time: 15.756 seconds
    Created GICache directory at C:/Users/Dell/AppData/LocalLow/Unity/Caches/GiCache. Took: 0.433s, timestamps: [191.404 - 191.837]
    gi::BakeBackendSwitch: switching bake backend from 3 to 1.
    Setting up 1 worker threads for Enlighten.
    Thread -> id: 22bc -> priority: 1
    TrimDiskCacheJob: Current cache size 0mb
    Refresh completed in 0.026865 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 26.749ms
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AddressableAssetSettings.asset (Guid(4eb3d9810aa4ee9498c3ee9b77b35b7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    <RI> Initialized touch support.

    <RI> Initialized touch support.

    Refresh completed in 0.014080 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 13.190ms
    Refresh completed in 0.014538 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 14.494ms
    <RI> Initialized touch support.

    Refresh completed in 0.013107 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 12.824ms
    Refresh completed in 0.013253 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 12.998ms
    Refresh completed in 0.017853 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 17.625ms
    Refresh completed in 0.012863 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 12.645ms
    Refresh completed in 0.011984 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 11.927ms
    Start importing Assets/AddressableAssetsData/AssetGroups/Packed Assets.asset using Guid(9fd6887ccec8a9d408f979adf42750d3) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'e517359346998b1ba039e4af4ee87468') in 0.012323 seconds
    Refreshing native plugins compatible for Editor in 1.52 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 174.634ms
    Start importing Assets/AddressableAssetsData/AssetGroups/Schemas/Packed Assets_BundledAssetGroupSchema.asset using Guid(060f173c0821e1846829b4cafc651f7e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '5ffb545b05a5aab605a2ab72d733816b') in 0.004856 seconds
    Refreshing native plugins compatible for Editor in 1.66 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 86.849ms
    Start importing Assets/AddressableAssetsData/AssetGroups/Schemas/Packed Assets_ContentUpdateGroupSchema.asset using Guid(eaa2dcdd8753c664eba7e3ec010a4f26) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'fb54034bf9b68f9e43ada10f513282c8') in 0.004780 seconds
    Refreshing native plugins compatible for Editor in 1.53 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 92.039ms
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroups/Packed Assets.asset (Guid(9fd6887ccec8a9d408f979adf42750d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Refreshing native plugins compatible for Editor in 1.49 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 63.995ms
    Refreshing native plugins compatible for Editor in 1.51 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 58.302ms
    Refreshing native plugins compatible for Editor in 1.74 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 59.515ms
    Start importing Assets/AddressableAssetsData/AddressableAssetSettings.asset using Guid(4eb3d9810aa4ee9498c3ee9b77b35b7f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9190f2e0be2d2b6de555720b69169df9') in 0.005576 seconds
    Refreshing native plugins compatible for Editor in 1.59 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 62.987ms
    Start importing Assets/Scenes/ayarlar.unity using Guid(2df5a7f85eec8214daca1dbfb16e254d) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f8bdff704416fd78bf1e22b20a6390ba') in 0.001153 seconds
    Refreshing native plugins compatible for Editor in 1.91 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 58.744ms
    SpriteAtlasPacking completed in 0.031244 sec
    Reloading assemblies for play mode.
    Begin MonoManager ReloadAssembly
    Native extension for Lumin target not found
    Native extension for UWP target not found
    Native extension for LinuxStandalone target not found
    Native extension for WindowsStandalone target not found
    Native extension for AppleTV target not found
    Native extension for iOS target not found
    Native extension for Android target not found
    Native extension for OSXStandalone target not found
    Native extension for WebGL target not found
    Refreshing native plugins compatible for Editor in 1.77 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    Invoked RoslynAnalysisRunner static constructor.
    RoslynAnalysisRunner will not be running.
    RoslynAnalysisRunner has terminated.
    [MODES] ModeService[none].Initialize
    [MODES] ModeService[none].LoadModes
    [MODES] Loading mode Default (0) for mode-current-id-NumberEstimate
    Mono: successfully reloaded assembly
    - Completed reload, in 3.194 seconds
    Platform modules already initialized, skipping
    Loaded scene 'Temp/__Backupscenes/0.backup'
    Deserialize: 10.745 ms
    Integration: 205.419 ms
    Integration of assets: 0.042 ms
    Thread Wait Time: 18.780 ms
    Total Operation Time: 234.986 ms
    [MODES] ModeService[default].RefreshMenus
    [MODES] ModeService[default].UpdateModeMenus
    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    [remote] error: Init socket failed
    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    The dropdown template is not assigned. The template needs to be assigned and must have a child GameObject with a Toggle component serving as the item.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cec2d51 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
    0x0000022e1cec2c3a (Mono JIT Code) UnityEngine.Debug:LogError (object,UnityEngine.Object)
    0x0000022e1cec23c3 (Mono JIT Code) [TMP_Dropdown.cs:612] TMPro.TMP_Dropdown:SetupTemplate ()
    0x0000022e1cec0453 (Mono JIT Code) [TMP_Dropdown.cs:773] TMPro.TMP_Dropdown:Show ()
    0x0000022e1cebde1b (Mono JIT Code) [TMP_Dropdown.cs:708] TMPro.TMP_Dropdown:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cebddd9 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cea3012 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cebda4b (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdf3ad3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdee213 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdee0bb (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdedb83 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fc87af (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e20dc63f0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Unloading 133 Unused Serialized files (Serialized files now loaded: 0)
    Loaded scene 'Temp/__Backupscenes/0.backup'
    Deserialize: 5.942 ms
    Integration: 16.259 ms
    Integration of assets: 0.006 ms
    Thread Wait Time: 12.463 ms
    Total Operation Time: 34.670 ms
    System memory in use before: 159.5 MB.
    System memory in use after: 141.7 MB.

    Unloading 323 unused Assets to reduce memory usage. Loaded Objects now: 4357.
    Total: 34.245000 ms (FindLiveObjects: 0.697300 ms CreateObjectMapping: 0.498400 ms MarkObjects: 23.868400 ms DeleteObjects: 9.178800 ms)

    <RI> Initialized touch support.

    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroups/Schemas (Guid(ca6d5047fe14e8d4c8b620806448f469) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroups/Schemas/Built In Data_PlayerDataGroupSchema.asset (Guid(9d52b7bb48a54534abb411d2800ba509) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroups/Schemas/Default Local Group_BundledAssetGroupSchema.asset (Guid(6bba7a7666a5d4942b7a3c3625552d3e) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroups/Schemas/Default Local Group_ContentUpdateGroupSchema.asset (Guid(3e46738daad300e4eb39dd29cec351b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroups/Schemas/Localization-Assets-Shared_BundledAssetGroupSchema.asset (Guid(97fd2aab6254c874aa8427b1c434c0ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroups/Schemas/Localization-Assets-Shared_ContentUpdateGroupSchema.asset (Guid(83a122fdaff4fd546b73f1c19e148a08) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroups/Schemas/Localization-Locales_BundledAssetGroupSchema.asset (Guid(4d1c19231a1944347968a8488c5048aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroups/Schemas/Localization-Locales_ContentUpdateGroupSchema.asset (Guid(d9b685e2ff54e8148a9d900f0eb6580f) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroups/Schemas/Localization-StringTables_BundledAssetGroupSchema.asset (Guid(6efcdacd21fcb9a419ac207c4749934c) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroups/Schemas/Localization-StringTables_ContentUpdateGroupSchema.asset (Guid(64b67d72773030f4ca5143f8bc8cd51d) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    <RI> Initialized touch support.

    Start importing Assets/AddressableAssetsData/AddressableAssetSettings.asset using Guid(4eb3d9810aa4ee9498c3ee9b77b35b7f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2bcbe5232f51b7ad243d7112498ec405') in 0.011733 seconds
    Refreshing native plugins compatible for Editor in 2.08 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 235.224ms
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AddressableAssetSettings.asset (Guid(4eb3d9810aa4ee9498c3ee9b77b35b7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData (Guid(b87ab3eed69d9a9428dedbf4dbbd8733) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroupTemplates (Guid(a1ee9f7fc56feb246984636896f45599) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/DataBuilders (Guid(887afb4ead64cbb4a8df4b4aa4f4a331) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroups (Guid(58ddedf6eb699d3429252f30b11e9a23) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AnalyzeData (Guid(0a16dd2fa1ee2a243a8e73624f4e55ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AnalyzeData/AnalyzeRuleData.asset (Guid(4220a76b4ddc5b742a257bb8e4d90128) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AnalyzeData/AnalyzeRuleData.asset (Guid(4220a76b4ddc5b742a257bb8e4d90128) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Start importing Assets/Scenes/ayarlar.unity using Guid(2df5a7f85eec8214daca1dbfb16e254d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '021d2f19f7eb2f74d18029a82f13d281') in 0.001074 seconds
    Refreshing native plugins compatible for Editor in 1.41 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 59.844ms
    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    Start importing Assets/AddressableAssetsData/AssetGroups/Localization-Assets-Shared.asset using Guid(c1dcf7bdeb7629645a113c6917e2d490) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'c0b3f40a7959e0e77233d265f34cc812') in 0.005512 seconds
    Start importing Assets/AddressableAssetsData/AddressableAssetSettings.asset using Guid(4eb3d9810aa4ee9498c3ee9b77b35b7f) Importer(-1,00000000000000000000000000000000) -> (artifact id: '2bcbe5232f51b7ad243d7112498ec405') in 0.005255 seconds
    Refreshing native plugins compatible for Editor in 1.65 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 69.656ms
    Start ondemand import (priority ImportantBackground): Assets/AddressableAssetsData/AssetGroups/Localization-Assets-Shared.asset (Guid(c1dcf7bdeb7629645a113c6917e2d490) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    <RI> Initialized touch support.

    Copying Addressables data from Library/com.unity.addressables/aa/Android to C:/Users/Dell/Desktop/atii/unity/NumberEstimateV3/Assets/StreamingAssets/aa. These copies will be deleted at the end of the build.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21634d88 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e21634c8b (Mono JIT Code) [AddressablesPlayerBuildProcessor.cs:53] AddressablesPlayerBuildProcessor:CopyTemporaryPlayerBuildData ()
    0x0000022e21634bbb (Mono JIT Code) [AddressablesPlayerBuildProcessor.cs:43] AddressablesPlayerBuildProcessor:OnPreprocessBuild (UnityEditor.Build.Reporting.BuildReport)
    0x0000022e215fee3d (Mono JIT Code) UnityEditor.Build.BuildPipelineInterfaces/<>c__DisplayClass15_0:<OnBuildPreProcess>b__1 (UnityEditor.Build.IPreprocessBuildWithReport)
    0x0000022d74f9f919 (Mono JIT Code) UnityEditor.Build.BuildPipelineInterfaces:InvokeCallbackInterfacesPair<T1_REF, T2_REF> (System.Collections.Generic.List`1<T1_REF>,System.Action`1<T1_REF>,System.Collections.Generic.List`1<T2_REF>,System.Action`1<T2_REF>,bool)
    0x0000022e215fea03 (Mono JIT Code) UnityEditor.Build.BuildPipelineInterfaces:OnBuildPreProcess (UnityEditor.Build.Reporting.BuildReport)
    0x0000022e1e76b950 (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_object (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa813e6b (Unity) Scripting::UnityEditor::Build::BuildPipelineInterfacesProxy::OnBuildPreProcess
    0x00007ff7aebd4cdc (Unity) BuildPlayer
    0x00007ff7ae0ab7ff (Unity) BuildPipeline::BuildPlayerInternalNoCheck
    0x00007ff7ae0044fa (Unity) BuildPipeline_CUSTOM_BuildPlayerInternalNoCheck
    0x0000022e215f0d6a (Mono JIT Code) (wrapper managed-to-native) UnityEditor.BuildPipeline:BuildPlayerInternalNoCheck (string[],string,string,UnityEditor.BuildTargetGroup,UnityEditor.BuildTarget,UnityEditor.BuildOptions,string[],bool)
    0x0000022e215f056b (Mono JIT Code) UnityEditor.BuildPlayerWindow/DefaultBuildMethods:BuildPlayer (UnityEditor.BuildPlayerOptions)
    0x0000022e20facc0b (Mono JIT Code) UnityEditor.BuildPlayerWindow:CallBuildMethods (bool,UnityEditor.BuildOptions)
    0x0000022e20fa90f3 (Mono JIT Code) UnityEditor.BuildPlayerWindow:GUIBuildButtons (UnityEditor.Modules.IBuildWindowExtension,bool,bool,bool,UnityEditor.Build.BuildPlatform)
    0x0000022e20f9d993 (Mono JIT Code) UnityEditor.BuildPlayerWindow:ShowBuildTargetSettings ()
    0x0000022e20f96493 (Mono JIT Code) UnityEditor.BuildPlayerWindow:OnGUI ()
    0x0000022d74f484f3 (Mono JIT Code) UnityEditor.HostView:InvokeOnGUI (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f482a3 (Mono JIT Code) UnityEditor.DockArea:DrawView (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f3bf73 (Mono JIT Code) UnityEditor.DockArea:OldOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Android PostProcess task "Checking prerequisites" took 6,5102 ms
    Android PostProcess task "Detect Java Development Kit (JDK)" took 1,078 ms
    File C:\Users\Dell\.android\repositories.cfg could not be loaded.

    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e22b0fd4b (Mono JIT Code) UnityEditor.Android.AndroidSDKTools:DetectErrorsAndWarnings (string,string,string[])
    0x0000022e22b0d333 (Mono JIT Code) UnityEditor.Android.AndroidSDKTools:RunAndroidSdkTool (string,string,bool,string,string,string[])
    0x0000022e216404ab (Mono JIT Code) UnityEditor.Android.AndroidSDKTools:ListComponentsVersions ()
    0x0000022e216401bb (Mono JIT Code) UnityEditor.Android.SDKManager:UpdatePackagesList ()
    0x0000022e22b5ff03 (Mono JIT Code) UnityEditor.Android.SDKManager:HighestVersionInstalled (UnityEditor.Android.SDKManager/Component)
    0x0000022e2163f863 (Mono JIT Code) UnityEditor.Android.PostProcessor.Tasks.CheckAndroidSDK/SDKToolsDetector:GetVersion ()
    0x0000022e2163f711 (Mono JIT Code) UnityEditor.Android.PostProcessor.Tasks.CheckAndroidSDK/SDKComponentDetector:Detect (System.Version,UnityEditor.Android.PostProcessor.ProgressHandler)
    0x0000022e2163f3cb (Mono JIT Code) UnityEditor.Android.PostProcessor.Tasks.CheckAndroidSDK:EnsureSDKComponentVersion (System.Version,UnityEditor.Android.PostProcessor.Tasks.CheckAndroidSDK/SDKComponentDetector)
    0x0000022e2163e53b (Mono JIT Code) UnityEditor.Android.PostProcessor.Tasks.CheckAndroidSDK:Execute (UnityEditor.Android.PostProcessor.PostProcessorContext)
    0x0000022e2163a425 (Mono JIT Code) UnityEditor.Android.PostProcessor.PostProcessRunner:RunAllTasks (UnityEditor.Android.PostProcessor.PostProcessorContext)
    0x0000022e2163687b (Mono JIT Code) UnityEditor.Android.PostProcessAndroidPlayer:prepareForBuild (UnityEditor.BuildOptions,UnityEditor.BuildTarget)
    0x0000022e216365cb (Mono JIT Code) UnityEditor.Android.AndroidBuildPostprocessor:prepareForBuild (UnityEditor.BuildOptions,UnityEditor.BuildTarget)
    0x0000022e216363d8 (Mono JIT Code) UnityEditor.PostprocessBuildPlayer:prepareForBuild (UnityEditor.BuildOptions,UnityEditor.BuildTargetGroup,UnityEditor.BuildTarget)
    0x0000022e21636491 (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_object_int_int_int (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7aebe69b6 (Unity) PrepareForBuild
    0x00007ff7aebd559d (Unity) BuildPlayer
    0x00007ff7ae0ab7ff (Unity) BuildPipeline::BuildPlayerInternalNoCheck
    0x00007ff7ae0044fa (Unity) BuildPipeline_CUSTOM_BuildPlayerInternalNoCheck
    0x0000022e215f0d6a (Mono JIT Code) (wrapper managed-to-native) UnityEditor.BuildPipeline:BuildPlayerInternalNoCheck (string[],string,string,UnityEditor.BuildTargetGroup,UnityEditor.BuildTarget,UnityEditor.BuildOptions,string[],bool)
    0x0000022e215f056b (Mono JIT Code) UnityEditor.BuildPlayerWindow/DefaultBuildMethods:BuildPlayer (UnityEditor.BuildPlayerOptions)
    0x0000022e20facc0b (Mono JIT Code) UnityEditor.BuildPlayerWindow:CallBuildMethods (bool,UnityEditor.BuildOptions)
    0x0000022e20fa90f3 (Mono JIT Code) UnityEditor.BuildPlayerWindow:GUIBuildButtons (UnityEditor.Modules.IBuildWindowExtension,bool,bool,bool,UnityEditor.Build.BuildPlatform)
    0x0000022e20f9d993 (Mono JIT Code) UnityEditor.BuildPlayerWindow:ShowBuildTargetSettings ()
    0x0000022e20f96493 (Mono JIT Code) UnityEditor.BuildPlayerWindow:OnGUI ()
    0x0000022d74f484f3 (Mono JIT Code) UnityEditor.HostView:InvokeOnGUI (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f482a3 (Mono JIT Code) UnityEditor.DockArea:DrawView (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f3bf73 (Mono JIT Code) UnityEditor.DockArea:OldOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    AndroidSDKTools:

    root : C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\PlaybackEngines\AndroidPlayer\SDK
    tools : C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\PlaybackEngines\AndroidPlayer\SDK\tools
    platform-tools: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\PlaybackEngines\AndroidPlayer\SDK\platform-tools
    build-tools : C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\PlaybackEngines\AndroidPlayer\SDK\build-tools\28.0.3

    adb : C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\PlaybackEngines\AndroidPlayer\SDK\platform-tools\adb.exe

    Android PostProcess task "Detecting Android SDK" took 18009,2187 ms
    Android PostProcess task "Detect Android NDK" took 95,1797 ms
    Android PostProcess task "Trying to find a suitable Android device" took 1,0718 ms
    BuildPlayerGenerator: Succeeded
    [ScriptCompilation] Recompiling all scripts because: Recompiling scripts for player build.
    BuildPlayer: start building target 13
    - Starting script compilation
    - Starting compile Library/PlayerScriptAssemblies/UnityEngine.TestRunner.dll
    - Starting compile Library/PlayerScriptAssemblies/UnityEngine.UI.dll
    - Finished compile Library/PlayerScriptAssemblies/UnityEngine.TestRunner.dll in 3,941491 seconds
    - Finished compile Library/PlayerScriptAssemblies/UnityEngine.UI.dll in 3,927982 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll
    - Starting compile Library/PlayerScriptAssemblies/Unity.2D.PixelPerfect.dll
    - Starting compile Library/PlayerScriptAssemblies/Unity.Timeline.dll
    - Starting compile Library/PlayerScriptAssemblies/Unity.TextMeshPro.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll in 1,271627 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.ResourceManager.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.2D.PixelPerfect.dll in 1,522186 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.Mathematics.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.Timeline.dll in 2,385863 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.2D.IK.Runtime.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.TextMeshPro.dll in 5,00546 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.2D.IK.Runtime.dll in 2,649284 seconds
    - Starting compile Library/PlayerScriptAssemblies/GoogleMobileAds.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.ResourceManager.dll in 5,721803 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.Addressables.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll in 5,385123 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.2D.Common.Runtime.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.Addressables.dll in 3,784606 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.Localization.dll
    - Finished compile Library/PlayerScriptAssemblies/GoogleMobileAds.dll in 5,816962 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.ScriptableBuildPipeline.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.2D.Common.Runtime.dll in 2,4489 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.Notifications.Android.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.ScriptableBuildPipeline.dll in 2,0705 seconds
    - Finished compile Library/PlayerScriptAssemblies/Unity.Localization.dll in 3,404581 seconds
    - Finished compile Library/PlayerScriptAssemblies/Unity.Mathematics.dll in 12,881208 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.2D.Animation.Runtime.dll
    - Starting compile Library/PlayerScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.Notifications.Android.dll in 2,280696 seconds
    - Finished compile Library/PlayerScriptAssemblies/Unity.2D.Animation.Runtime.dll in 1,692645 seconds
    - Finished compile Library/PlayerScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll in 2,488434 seconds
    - Starting compile Library/PlayerScriptAssemblies/Assembly-CSharp.dll
    - Finished compile Library/PlayerScriptAssemblies/Assembly-CSharp.dll in 1,535055 seconds
    - Finished script compilation in 22,781846 seconds
    Assets\AdmobCode\Scr�pts\VG_GoogleAdmob.cs(78,9): warning CS0618: 'MobileAds.Initialize(string)' is obsolete: 'Initialize(string appId) is deprecated, use Initialize(Action<InitializationStatus> initCompleteAction) instead.'

    Assets\GoogleMobileAds\Platforms\Unity\InterstitialClient.cs(38,53): warning CS0067: The event 'InterstitialClient.OnPaidEvent' is never used

    Assets\GoogleMobileAds\Platforms\Unity\BannerClient.cs(39,53): warning CS0067: The event 'BannerClient.OnPaidEvent' is never used

    Assets\GoogleMobileAds\Api\RewardedInterstitialAd.cs(58,53): warning CS0067: The event 'RewardedInterstitialAd.OnPaidEvent' is never used

    Assets\GoogleMobileAds\Platforms\Unity\RewardedAdClient.cs(33,57): warning CS0067: The event 'RewardedAdClient.OnAdFailedToLoad' is never used

    Assets\GoogleMobileAds\Platforms\Unity\BannerClient.cs(35,46): warning CS0067: The event 'BannerClient.OnAdClosed' is never used

    Assets\GoogleMobileAds\Platforms\Unity\RewardingAdBaseClient.cs(34,53): warning CS0067: The event 'RewardingAdBaseClient.OnPaidEvent' is never used

    BuildPlayerGenerator: Succeeded
    Start importing Assets/StreamingAssets using Guid(f46f8be97be13d148ba88518919b877b) Importer(-1,00000000000000000000000000000000) -> (artifact id: '28de880e84977033926d61caa9000a47') in 0.021519 seconds
    Start importing Assets/StreamingAssets/aa using Guid(e939dddde8f91564fa9d57d864c2a60e) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ac53339c2031df946757fc3515e5a419') in 0.020044 seconds
    Start importing Assets/StreamingAssets/aa/Android using Guid(06fb3a213d7a4c3449666a7c593026e8) Importer(-1,00000000000000000000000000000000) -> (artifact id: '792ace859e60cf9423768bfae451d781') in 0.021222 seconds
    Start importing Assets/StreamingAssets/aa/Android/localization-assets-shared_assets_all.bundle using Guid(c0f4630042da6da469b9df2672940bf7) Importer(-1,00000000000000000000000000000000) -> (artifact id: '31111e7232ce9a962a4b68fef05ab797') in 0.031206 seconds
    Start importing Assets/StreamingAssets/aa/Android/defaultlocalgroup_assets_all_1066a4a3c3f6f887b921dbeb5772d69b.bundle using Guid(f433d41f5a0a57542a603f291c1694e9) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd8cf974e1534429b1333150591392b03') in 0.015475 seconds
    Start importing Assets/StreamingAssets/aa/Android/localization-stringtables_assets_all.bundle using Guid(ca75cb3c5dc50204db490b039389ae52) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0ed7dfa6bc4e0961338617a9826a78f5') in 0.016792 seconds
    Refreshing native plugins compatible for Editor in 3.28 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    Refresh completed in 1.427906 seconds.
    RefreshInfo: RefreshV2() scanfilter:
    RefreshProfiler: Total: 1427.873ms
    InvokeBeforeRefreshCallbacks: 0.001ms
    ApplyChangesToAssetFolders: 0.442ms
    Scan: 431.145ms
    OnSourceAssetsModified: 0.145ms
    InitializeImportedAssetsSnapshot: 15.328ms
    GetAllGuidsForCategorization: 0.487ms
    CategorizeAssets: 187.183ms
    ImportAndPostprocessOutOfDateAssets: 756.260ms (13.277ms without children)
    ImportManagerImport: 658.548ms (7.117ms without children)
    ImportInProcess: 651.226ms
    UpdateCategorizedAssets: 0.205ms
    PostProcessAllAssets: 55.767ms
    ReloadImportedAssets: 0.006ms
    EnsureUptoDateAssetsAreRegisteredWithGuidPM: 1.366ms
    InitializingProgressBar: 0.127ms
    PostProcessAllAssetNotificationsAddChangedAssets: 0.625ms
    OnDemandSchedulerStart: 0.549ms
    RestoreLoadedAssetsState: 7.259ms
    UpdateImportedAssetsSnapshot: 18.735ms
    ReloadSourceAssets: 2.968ms
    UnloadImportedAssets: 0.470ms
    Hotreload: 16.212ms
    FixTempGuids: 0.005ms
    GatherAllCurrentPrimaryArtifactRevisions: 0.544ms
    UnloadStreamsBegin: 3.167ms
    LoadedImportedAssetsSnapshotReleaseGCHandles: 2.996ms
    GetLoadedSourceAssetsSnapshot: 18.015ms
    PersistCurrentRevisions: 0.419ms
    UnloadStreamsEnd: 0.116ms
    GenerateScriptTypeHashes: 0.024ms
    Untracked: -8.027ms
    Warning! Using antialiasing on a mobile device may decrease performance severely. You can change the mobile quality settings in 'Project Settings -> Quality Settings'.

    Warning! Using more than 1 pixel lights on a mobile device may decrease performance severely. You can change the mobile quality settings in 'Project Settings -> Quality Settings'.

    SpriteAtlasPacking completed in 0.593099 sec
    Opening scene 'Assets/Scenes/menu.unity'
    Unloading 2 Unused Serialized files (Serialized files now loaded: 0)
    Loaded scene 'Assets/Scenes/menu.unity'
    Deserialize: 468.225 ms
    Integration: 69.172 ms
    Integration of assets: 0.291 ms
    Thread Wait Time: 12.375 ms
    Total Operation Time: 550.064 ms
    System memory in use before: 140.2 MB.
    System memory in use after: 140.0 MB.

    Unloading 178 unused Assets to reduce memory usage. Loaded Objects now: 4298.
    Total: 38.258100 ms (FindLiveObjects: 0.653800 ms CreateObjectMapping: 0.273100 ms MarkObjects: 36.335000 ms DeleteObjects: 0.992600 ms)

    Opening scene 'Temp/__Backupscenes/0.backup'
    Unloading 49 Unused Serialized files (Serialized files now loaded: 0)
    Loaded scene 'Temp/__Backupscenes/0.backup'
    Deserialize: 12.594 ms
    Integration: 60.755 ms
    Integration of assets: 0.391 ms
    Thread Wait Time: 15.783 ms
    Total Operation Time: 89.522 ms
    System memory in use before: 145.9 MB.
    System memory in use after: 145.7 MB.

    Unloading 68 unused Assets to reduce memory usage. Loaded Objects now: 4393.
    Total: 54.322100 ms (FindLiveObjects: 1.725200 ms CreateObjectMapping: 0.533500 ms MarkObjects: 51.694900 ms DeleteObjects: 0.364800 ms)

    Opening scene 'Assets/Scenes/tekKisilik.unity'
    Unloading 9 Unused Serialized files (Serialized files now loaded: 0)
    Loaded scene 'Assets/Scenes/tekKisilik.unity'
    Deserialize: 425.353 ms
    Integration: 71.590 ms
    Integration of assets: 0.366 ms
    Thread Wait Time: 14.976 ms
    Total Operation Time: 512.285 ms
    System memory in use before: 144.9 MB.
    System memory in use after: 145.2 MB.

    Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 4548.
    Total: 46.736700 ms (FindLiveObjects: 0.800000 ms CreateObjectMapping: 0.446700 ms MarkObjects: 45.380000 ms DeleteObjects: 0.106800 ms)

    Opening scene 'Assets/Scenes/ciftKisilik.unity'
    Unloading 4 Unused Serialized files (Serialized files now loaded: 0)
    Loaded scene 'Assets/Scenes/ciftKisilik.unity'
    Deserialize: 112.089 ms
    Integration: 32.388 ms
    Integration of assets: 0.052 ms
    Thread Wait Time: 14.755 ms
    Total Operation Time: 159.283 ms
    System memory in use before: 145.0 MB.
    System memory in use after: 145.3 MB.

    Unloading 1 unused Assets to reduce memory usage. Loaded Objects now: 4774.
    Total: 48.184700 ms (FindLiveObjects: 0.807500 ms CreateObjectMapping: 0.560100 ms MarkObjects: 46.776300 ms DeleteObjects: 0.037800 ms)



    Mono dependencies included in the build
    Dependency assembly - System.Runtime.Serialization.Xml.dll
    Dependency assembly - Unity.2D.Animation.Runtime.dll
    Dependency assembly - System.Xml.dll
    Dependency assembly - mscorlib.dll
    Dependency assembly - System.IO.Compression.dll
    Dependency assembly - GoogleMobileAds.dll
    Dependency assembly - System.Net.Http.dll
    Dependency assembly - System.ServiceModel.Internals.dll
    Dependency assembly - System.Xml.XPath.XDocument.dll
    Dependency assembly - Unity.ScriptableBuildPipeline.dll
    Dependency assembly - netstandard.dll
    Dependency assembly - Unity.Timeline.dll
    Dependency assembly - System.Core.dll
    Dependency assembly - Assembly-CSharp.dll
    Dependency assembly - UnityEngine.UI.dll
    Dependency assembly - System.EnterpriseServices.dll
    Dependency assembly - Unity.ResourceManager.dll
    Dependency assembly - System.Xml.Linq.dll
    Dependency assembly - Mono.Security.dll
    Dependency assembly - System.Configuration.dll
    Dependency assembly - System.Numerics.dll
    Dependency assembly - System.Runtime.Serialization.dll
    Dependency assembly - Unity.2D.Animation.Triangle.Runtime.dll
    Dependency assembly - Unity.Addressables.dll
    Dependency assembly - Unity.InternalAPIEngineBridge.001.dll
    Dependency assembly - Unity.2D.Common.Runtime.dll
    Dependency assembly - Unity.2D.PixelPerfect.dll
    Dependency assembly - System.Transactions.dll
    Dependency assembly - Unity.Localization.dll
    Dependency assembly - System.Globalization.Extensions.dll
    Dependency assembly - Unity.2D.SpriteShape.Runtime.dll
    Dependency assembly - System.ComponentModel.Composition.dll
    Dependency assembly - System.Drawing.dll
    Dependency assembly - System.IO.Compression.FileSystem.dll
    Dependency assembly - System.Data.dll
    Dependency assembly - Newtonsoft.Json.dll
    Dependency assembly - Unity.Notifications.Android.dll
    Dependency assembly - Unity.TextMeshPro.dll
    Dependency assembly - System.Diagnostics.StackTrace.dll
    Dependency assembly - System.dll
    Dependency assembly - Unity.2D.IK.Runtime.dll
    Dependency assembly - Unity.Mathematics.dll

    Unloading 105 Unused Serialized files (Serialized files now loaded: 0)
    System memory in use before: 152.0 MB.
    System memory in use after: 152.2 MB.

    Unloading 137 unused Assets to reduce memory usage. Loaded Objects now: 4202.
    Total: 42.924200 ms (FindLiveObjects: 0.544000 ms CreateObjectMapping: 0.275100 ms MarkObjects: 41.601300 ms DeleteObjects: 0.500700 ms)

    [EnlightenBakeManager] m_Clear = false;
    Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
    System memory in use before: 148.5 MB.
    System memory in use after: 148.8 MB.

    Unloading 1 unused Assets to reduce memory usage. Loaded Objects now: 4210.
    Total: 34.424600 ms (FindLiveObjects: 2.141400 ms CreateObjectMapping: 0.654500 ms MarkObjects: 31.559400 ms DeleteObjects: 0.065000 ms)

    Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
    System memory in use before: 285.3 MB.
    System memory in use after: 149.2 MB.

    Unloading 154 unused Assets to reduce memory usage. Loaded Objects now: 4201.
    Total: 64.916800 ms (FindLiveObjects: 0.615500 ms CreateObjectMapping: 0.264100 ms MarkObjects: 22.823400 ms DeleteObjects: 41.211000 ms)

    Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds
    Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds
    Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds
    Compiled shader 'TextMeshPro/Mobile/Distance Field' in 1.15s
    gles3 (total internal programs: 16, unique: 16)
    vulkan (total internal programs: 16, unique: 16)

    ***Player size statistics***
    Level 0 'Assets/Scenes/menu.unity' uses 1.1 MB compressed / 2.5 MB uncompressed.
    Level 1 'Assets/Scenes/ayarlar.unity' uses 111.0 KB compressed / 2.3 MB uncompressed.
    Level 2 'Assets/Scenes/tekKisilik.unity' uses 19.5 KB compressed / 384.0 KB uncompressed.
    Level 3 'Assets/Scenes/ciftKisilik.unity' uses 1.1 MB compressed / 2.4 MB uncompressed.
    Total compressed size 2.3 MB. Total uncompressed size 7.5 MB.
    Android PostProcess task "Creating staging area" took 7,1378 ms
    Android PostProcess task "Generating Build Id" took 0,4177 ms
    Android PostProcess task "Preparing Unity resources" took 510,5144 ms
    Android PostProcess task "Managed Stripping: (Mono)" took 6,3745 ms
    Android PostProcess task "Preparing Managed resources" took 3315,1519 ms
    Android PostProcess task "Splitting assets" took 6,3747 ms
    Android PostProcess task "Processing OBB assets" took 0,3689 ms
    Android PostProcess task "Preparing Unity libraries" took 1722,162 ms
    Android PostProcess task "Processing resources" took 0,9048 ms
    Android PostProcess task "Preparing APK resources" took 318,9818 ms
    Android PostProcess task "Processing plugins" took 3559,935 ms
    Android PostProcess task "Processing Android libraries" took 9,3976 ms
    Android PostProcess task "Checking Graphics API compatibility" took 3,3574 ms
    Android PostProcess task "Creating Android manifest" took 528,0695 ms
    Android PostProcess task "Compiling resources" took 3,9992 ms
    Android PostProcess task "GenerateIl2cppPlatformProviders" took 1,5704 ms
    Android PostProcess task "IL2CPP" took 0,6732 ms
    Android PostProcess task "Build native Unity binary" took 0,151 ms
    Android PostProcess task "Zipping symbols" took 0,3472 ms
    Android PostProcess task "Performance Reporting Symbol Upload" took 0,4066 ms
    Android PostProcess task "Preparing streaming assets" took 375,5052 ms
    Android PostProcess task "Creating APK expansion package (OBB)" took 0,226 ms
    Android PostProcess task "Exporting project" took 8690,1028 ms
    Android PostProcess task "Building Gradle project" took 194753,6358 ms
    Android PostProcess task "Processing Mapping File" took 1,5066 ms
    Android PostProcess task "Moving output package(s)" took 46,6557 ms
    Deleting Addressables data from C:/Users/Dell/Desktop/atii/unity/NumberEstimateV3/Assets/StreamingAssets/aa.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21634d88 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022d74ddeaf3 (Mono JIT Code) [AddressablesPlayerBuildProcessor.cs:33] AddressablesPlayerBuildProcessor:CleanTemporaryPlayerBuildData ()
    0x0000022e21562a2b (Mono JIT Code) [AddressablesPlayerBuildProcessor.cs:25] AddressablesPlayerBuildProcessor:OnPostprocessBuild (UnityEditor.Build.Reporting.BuildReport)
    0x0000022e215604ad (Mono JIT Code) UnityEditor.Build.BuildPipelineInterfaces/<>c__DisplayClass17_0:<OnBuildPostProcess>b__1 (UnityEditor.Build.IPostprocessBuildWithReport)
    0x0000022d74f9f919 (Mono JIT Code) UnityEditor.Build.BuildPipelineInterfaces:InvokeCallbackInterfacesPair<T1_REF, T2_REF> (System.Collections.Generic.List`1<T1_REF>,System.Action`1<T1_REF>,System.Collections.Generic.List`1<T2_REF>,System.Action`1<T2_REF>,bool)
    0x0000022e215602c3 (Mono JIT Code) UnityEditor.Build.BuildPipelineInterfaces:OnBuildPostProcess (UnityEditor.Build.Reporting.BuildReport)
    0x0000022e1e76b950 (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_object (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa8139db (Unity) Scripting::UnityEditor::Build::BuildPipelineInterfacesProxy::OnBuildPostProcess
    0x00007ff7aebe671d (Unity) PostprocessPlayer
    0x00007ff7aebe221d (Unity) DoBuildPlayer_PostBuild
    0x00007ff7aebe0b10 (Unity) DoBuildPlayer
    0x00007ff7aebd5bcc (Unity) BuildPlayer
    0x00007ff7ae0ab7ff (Unity) BuildPipeline::BuildPlayerInternalNoCheck
    0x00007ff7ae0044fa (Unity) BuildPipeline_CUSTOM_BuildPlayerInternalNoCheck
    0x0000022e215f0d6a (Mono JIT Code) (wrapper managed-to-native) UnityEditor.BuildPipeline:BuildPlayerInternalNoCheck (string[],string,string,UnityEditor.BuildTargetGroup,UnityEditor.BuildTarget,UnityEditor.BuildOptions,string[],bool)
    0x0000022e215f056b (Mono JIT Code) UnityEditor.BuildPlayerWindow/DefaultBuildMethods:BuildPlayer (UnityEditor.BuildPlayerOptions)
    0x0000022e20facc0b (Mono JIT Code) UnityEditor.BuildPlayerWindow:CallBuildMethods (bool,UnityEditor.BuildOptions)
    0x0000022e20fa90f3 (Mono JIT Code) UnityEditor.BuildPlayerWindow:GUIBuildButtons (UnityEditor.Modules.IBuildWindowExtension,bool,bool,bool,UnityEditor.Build.BuildPlatform)
    0x0000022e20f9d993 (Mono JIT Code) UnityEditor.BuildPlayerWindow:ShowBuildTargetSettings ()
    0x0000022e20f96493 (Mono JIT Code) UnityEditor.BuildPlayerWindow:OnGUI ()
    0x0000022d74f484f3 (Mono JIT Code) UnityEditor.HostView:InvokeOnGUI (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f482a3 (Mono JIT Code) UnityEditor.DockArea:DrawView (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f3bf73 (Mono JIT Code) UnityEditor.DockArea:OldOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Refreshing native plugins compatible for Editor in 3.76 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 341.338ms
    InvokeBeforeRefreshCallbacks: 0.002ms
    ApplyChangesToAssetFolders: 0.267ms
    Scan: 92.203ms
    OnSourceAssetsModified: 0.391ms
    UnregisterDeletedAssets: 0.002ms
    InitializeImportedAssetsSnapshot: 8.477ms
    GetAllGuidsForCategorization: 2.318ms
    CategorizeAssets: 8.464ms
    ImportAndPostprocessOutOfDateAssets: 35.835ms (3.276ms without children)
    PostProcessAllAssets: 21.870ms
    EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.880ms
    InitializingProgressBar: 0.001ms
    PostProcessAllAssetNotificationsAddChangedAssets: 0.378ms
    OnDemandSchedulerStart: 0.430ms
    RestoreLoadedAssetsState: 3.744ms
    UpdateImportedAssetsSnapshot: 5.256ms
    ReloadSourceAssets: 1.358ms
    UnloadImportedAssets: 0.623ms
    Hotreload: 16.188ms
    FixTempGuids: 0.005ms
    GatherAllCurrentPrimaryArtifactRevisions: 0.712ms
    UnloadStreamsBegin: 0.073ms
    LoadedImportedAssetsSnapshotReleaseGCHandles: 1.796ms
    GetLoadedSourceAssetsSnapshot: 9.273ms
    PersistCurrentRevisions: 0.646ms
    UnloadStreamsEnd: 0.069ms
    GenerateScriptTypeHashes: 0.032ms
    Untracked: 162.636ms
    Refreshing native plugins compatible for Editor in 3.49 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 85.027ms
    Refreshing native plugins compatible for Editor in 2.11 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.

    -------------------------------------------------------------------------------
    Build Report
    Uncompressed usage by category (Percentages based on user generated assets only):
    Textures 5.3 mb 23.0%
    Meshes 0.0 kb 0.0%
    Animations 0.0 kb 0.0%
    Sounds 3.8 kb 0.0%
    Shaders 328.0 kb 1.4%
    Other Assets 805.6 kb 3.4%
    Levels 180.6 kb 0.8%
    Scripts 3.0 mb 12.9%
    Included DLLs 13.4 mb 58.3%
    File headers 47.1 kb 0.2%
    Total User Assets 23.0 mb 100.0%
    Complete build size 106.6 mb
    Used Assets and files from the Resources folder, sorted by uncompressed size:
    2.0 mb 1.9% Assets/Sprites/turkFlag.png
    1.0 mb 1.0% Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset
    368.9 kb 0.3% Assets/Sprites/tik.png
    344.5 kb 0.3% Assets/TextMesh Pro/Fonts/LiberationSans.ttf
    341.5 kb 0.3% Assets/TextMesh Pro/Examples & Extras/Sprites/DropCap Numbers.psd
    341.5 kb 0.3% Assets/TextMesh Pro/Examples & Extras/Sprites/Default Sprites.png
    341.5 kb 0.3% Assets/TextMesh Pro/Sprites/EmojiOne.png
    259.5 kb 0.2% Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset
    170.8 kb 0.2% Assets/TextMesh Pro/Examples & Extras/Textures/Fruit Jelly (B&W).jpg
    170.8 kb 0.2% Assets/TextMesh Pro/Examples & Extras/Textures/Floor Cement.jpg
    167.1 kb 0.2% Assets/TextMesh Pro/Examples & Extras/Fonts/Roboto-Bold.ttf
    148.6 kb 0.1% Assets/Sprites/englandFlag 1.png
    106.9 kb 0.1% Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader
    106.4 kb 0.1% Assets/TextMesh Pro/Shaders/TMP_SDF.shader
    85.5 kb 0.1% Assets/TextMesh Pro/Examples & Extras/Textures/Brushed Metal 3.jpg
    71.7 kb 0.1% Assets/TextMesh Pro/Examples & Extras/Fonts/Electronic Highway Sign.TTF
    68.5 kb 0.1% Resources/unity_builtin_extra
    64.2 kb 0.1% Assets/TextMesh Pro/Examples & Extras/Textures/Sunny Days - Seamless.jpg
    52.2 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Fonts/Oswald-Bold.ttf
    41.8 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Fonts/Anton.ttf
    40.5 kb 0.0% Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader
    39.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Fonts/Bangers.ttf
    28.6 kb 0.0% Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader
    19.3 kb 0.0% Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader
    17.2 kb 0.0% Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader
    9.1 kb 0.0% Assets/TextMesh Pro/Shaders/TMP_Sprite.shader
    5.8 kb 0.0% Assets/Sprites/dikdortgenButon2.png
    4.2 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Circle.psd
    3.8 kb 0.0% Assets/keyboard.mp3
    3.2 kb 0.0% Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset
    2.9 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Oswald Bold SDF.asset
    2.9 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF.asset
    2.8 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Electronic Highway Sign SDF.asset
    2.7 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF.asset
    2.7 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF.asset
    2.7 kb 0.0% Assets/Localization/Localization Settings.asset
    2.2 kb 0.0% Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset
    1.9 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/Default Sprite Asset.asset
    1.8 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF Glow.mat
    1.8 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Metalic Green.mat
    1.8 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/DropCap Numbers.asset
    1.7 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF - Surface.mat
    1.7 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Sunny Days.mat
    1.7 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Soft Mask.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF Logo.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF - Drop Shadow.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF - Outline.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF - Drop Shadow.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Drop Shadow.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Outline.mat
    1.2 kb 0.0% Assets/Sprites/buttonImage.png
    1.0 kb 0.0% Assets/Sprites/soundOff.png
    1.0 kb 0.0% Assets/Sprites/soundOn.png
    0.9 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Overlay.mat
    0.7 kb 0.0% Assets/AdmobCode/ADS.prefab
    0.3 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Diagonal (Color).jpg
    0.3 kb 0.0% Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt
    0.3 kb 0.0% Assets/TextMesh Pro/Resources/TMP Settings.asset
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AddressableAssetSettingsResourceLocationTests.cs
    0.2 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidReceivedNotificationMainThreadDispatcher.cs
    0.2 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Settings/LocalizationSettingsLocaleChangedTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/Simulation/VirtualAssetBundleRuntimeData.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs
    0.2 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Localized Reference/ChangingLocalizedAssetEventUpdatesValues.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/DiagnosticEventCollectorIntegrationTests.cs
    0.2 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/RectMask2DWithNestedCanvasCullsUsingCorrectCanvasRect.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/Simulation/VirtualBundledAssetProvider.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/Simulation/VirtualAssetBundleProvider.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs
    0.2 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Localized Reference/ChangingLocalizedStringUpdatesValues.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceProviders/ContentCatalogProviderTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/DynamicContentUpdateTests.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs
    0.2 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Settings/PlayerPrefLocaleSelectorTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/VirtualAssetBundleProviderTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerVirtualModeTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerPackedModeTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/AddressablesRuntimeProperties.cs
    0.2 kb 0.0% Packages/com.unity.timeline/Runtime/AssetUpgrade/AnimationPlayableAssetUpgrade.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs
    0.2 kb 0.0% Packages/com.unity.scriptablebuildpipeline/Runtime/CompatibilityAssetBundleManifest.cs
    0.2 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/PluralLocalizationFormatter.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ManualPercentCompleteOperation.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/Simulation/VirtualAssetBundle.cs
    0.2 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/DefaultVoronoiFactory.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs
    0.2 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidNotificationIntentData.cs
    0.2 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidNotificationExtensions.cs
    0.2 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Helpers/LocalizationSettingsHelper.cs
    0.2 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/ParsingErrorEventArgs.cs
    0.2 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/SharedTableCollectionMetadata.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerFastModeTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/Operations/BaseOperationBehaviorTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/Operations/AsyncOperationHandleTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/LegacyResourcesProvider.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/AssetDatabaseProvider.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/ResourceManagerRuntimeData.cs
    0.2 kb 0.0% Assets/Samples/Localization/0.9.0-preview/Language Selection Menu (UGUI)/LanguageSelectionMenuUGUIToggleList.cs
    0.2 kb 0.0% Assets/Samples/Localization/0.9.0-preview/Language Selection Menu (UGUI)/LanguageSelectionMenuUGUIDropdown.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/AllocatingGCMemoryConstraint.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AddressablesIntegrationTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceProviders/ContentCatalogProvider.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Diagnostics/DiagnosticEventCollector.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceLocators/LegacyResourcesLocator.cs
    0.2 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/Legacy/BoundedVoronoiLegacy.cs
    0.2 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/IntersectionHelper.cs
    0.2 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/ConstraintOptions.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/TestCommandBuilder.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRepeatedTestCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestMustExpectAllLogsAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidNotificationCenter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Formatting/FormattingException.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Startup Selectors/CommandLineLocaleSelector.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/PreloadAssetTableMetadata.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerBaseTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/Operations/ProviderOperationTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/ResourceProviderBase.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/BundledAssetProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/AtlasSpriteProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/AssetBundleProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceLocations/ResourceLocationBase.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/InitializationOperation.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/RewardedInterstitialAdDummyClient.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CanvasScalerWithChildTextObjectDoesNotCrash.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RuntimeTestRunnerFilter.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/PlayerQuitHandler.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/XElementFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/TemplateFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/SubStringFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/ConditionalFormatter.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/Initialization/AddrRuntimePropertiesTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AssetReferenceDrawerTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Utility/SerializationUtilities.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/ResourceManagerConfig.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceLocators/ResourceLocationMap.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceLocators/ResourceLocationData.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceLocators/ContentCatalogData.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/StandardVoronoi.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/Legacy/VoronoiRegion.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/Legacy/SimpleVoronoi.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/BoundedVoronoi.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/TriangleSampler.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/TriangleLocator.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/TriangleQuadTree.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/QualityMeasure.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/PolygonValidator.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/Interpolation.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/AdjacencyMatrix.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Smoothing/VoronoiFactory.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Smoothing/SimpleSmoother.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/RobustPredicates.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/QualityOptions.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/QualityMesher.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Iterators/RegionIterator.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/GenericMesher.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/ConstraintMesher.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/MeshValidator.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/TriangleWriter.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/TriangleReader.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/TriangleFormat.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/InputTriangle.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/FileProcessor.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/RegionPointer.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/ExtensionMethods.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Configuration.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteLib/SpriteLibraryAsset.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRetryTestCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/ConditionalIgnoreAttribute.cs
    0.1 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Locale/LocaleSystemLanguage.cs
    0.1 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Helpers/TestLocaleProvider.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/FormattingErrorEventArgs.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Settings/SmartSettings.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/ParsingErrors.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Formatting/FormattingInfo.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Formatting/FormatDetails.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Extensions/FormatterBase.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Startup Selectors/SpecificLocaleSelector.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Startup Selectors/PlayerPrefLocaleSelector.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Database/LocalizedStringDatabase.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Database/LocalizedAssetDatabase.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/SharedTableEntryMetadata.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Component Localizers/LocalizeAudioClipEvent.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/TextDataProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/SceneProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/InstanceProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/GroupOperation.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/CacheInitialization.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/PrepareSkinningSystem.cs
    0.1 kb 0.0% Assets/Samples/Localization/0.9.0-preview/Language Selection Menu (IMGUI)/LanguageSelectionMenuIMGUI.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/InitializationStatusDummyClient.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/NestedLayout/SceneWithNestedLayoutElementsLoadScript.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/GraphicRaycasterWorldSpaceCanvasTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/NoActiveCameraInSceneDoesNotCrashEditor.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CanvasSizeCorrectInAwakeAndStartScript.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/AssetUpgrade/AnimationTrackUpgrade.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Animation/AnimationPreviewUpdateCallback.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Animation/AnimationOutputWeightProcessor.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/TestRunCallbackListener.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/SynchronousFilter.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/Keys/SequentialIDGenerator.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/Keys/DistributedUIDGenerator.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Utilities/TimeSpanUtility.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Utilities/FormatDelegate.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/TimeFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/ReflectionSource.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/ListFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/IsMatchFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/DictionarySource.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/DefaultSource.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/DefaultFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/ChooseFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Output/TextWriterOutput.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Services/PlatformMappingService.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/DelayedActionManager.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/UpdateCatalogsOperation.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/CheckCatalogsOperation.cs
    0.1 kb 0.0% Packages/com.unity.2d.common/Runtime/InternalBridge/InternalEngineBridge.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/VoronoiBase.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/TrianglePool.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/SubSegment.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/VertexSorter.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/Statistic.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/CuthillMcKee.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/NewLocation.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Iterators/EdgeIterator.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Data/BadTriangle.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Data/BadTriQueue.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Data/BadSubseg.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Converter.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Algorithm/SweepLine.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Algorithm/Incremental.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/DebugWriter.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Rectangle.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteLib/SpriteResolver.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteLib/SpriteLibrary.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/ServerSideVerificationOptions.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/HorizontalOrVerticalLayoutGroup.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/TestRunCallbackAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/iOS/iOSNotificationsWrapper.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/iOS/iOSNotificationCenter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Locale/LocaleSorting.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Utilities/SystemTime.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/Placeholder.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/LiteralText.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/FormatItem.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Formatting/FormatCache.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Startup Selectors/SystemLocaleSelector.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/LocalizationSettings.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/MetadataCollection.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/AssetTypeMetadata.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Component Localizers/LocalizeTextureEvent.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Component Localizers/LocalizeStringEvent.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Component Localizers/LocalizeSpriteEvent.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Attributes/MetadataAttribute.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/RuntimePlatformMappingServiceTests.cs
    0.1 kb 0.0% Packages/com.unity.2d.pixel-perfect/Runtime/PixelPerfectCameraInternal.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/UpdateBoundsSystem.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/TransformAccessJob.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteSkinUtility.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteSkinManager.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteSkinComposite.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/DeformSpriteSystem.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt
    0.1 kb 0.0% Assets/Samples/Localization/0.9.0-preview/Language Selection Menu (IMGUI)/SimpleLocalesProvider.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/RewardedInterstitialAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/RewardedInterstitialAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/RequestConfigurationClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/InitializationStatusClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/CustomNativeTemplateClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettings.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/CustomNativeClientEventArgs.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/NestedLayout/SceneWithNestedLayoutElementsLoads.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CoroutineWorksIfUIObjectIsAttached.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/AnimationPreviewUtilities.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/TimeNotificationBehaviour.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/ActivationControlPlayable.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/SystemLanguageConverter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/LocalizationTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Utilities/PluralRules.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/XmlSource.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Output/StringOutput.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/TypicalCharacterSets.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Methods/CharacterSubstitutor.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Operations/InitializationOperation.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerLegacyModeTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/AssetLabelReference.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/SpriteShapeController.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/MeshUtils.cs
    0.1 kb 0.0% Packages/com.unity.2d.pixel-perfect/Tests/Runtime/PixelPerfectCameraTests.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/Triangle.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/DCEL/Vertex.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/DCEL/HalfEdge.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/DCEL/DcelMesh.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Algorithm/Dwyer.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Logging/LogItem.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Vertex.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Segment.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Polygon.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Point.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Contour.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Behavior.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Light to Dark Green - Vertical.asset
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Dark to Light Green - Vertical.asset
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/RewardedInterstitialAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/RequestConfigurationClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/InitializationStatusClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/CustomNativeTemplateClient.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Util/UIBehaviourExtensions.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/InputModules/StandaloneInputModule.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestState.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/iOS/AuthorizationRequest.cs
    0.1 kb 0.0% Packages/com.unity.mobile.android-logcat/Tests/Runtime/AndroidLogcatDummyTests.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/SmartFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/SmartExtensions.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/Selector.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/Parser.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/Format.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/LocalesProvider.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/SmartFormatTag.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/FallbackLocale.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/TestUtil/MockProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/InitializationObjectsAsyncTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AddressablesIntegrationTestsImpl.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/WebRequestQueue.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceManager.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/AssetReferenceUIRestriction.cs
    0.1 kb 0.0% Packages/com.unity.2d.pixel-perfect/Runtime/CinemachinePixelPerfect.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteSkinEntity.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/Solver2DMenuAttribute.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/IKEditorManagerHelper.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Yellow to Orange - Vertical.asset
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Blue to Purple - Vertical.asset
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/GoogleMobileAdsClientFactory.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/RewardingAdBaseClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/ResponseInfoDummyClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/GoogleMobileAdsClientFactory.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/RewardBasedVideoAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/RewardedAdDummyClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/MobileAdsEventExecutor.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/InputField/GenericInputFieldTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/InputField/DesktopInputFieldTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/RectTransformValidAfterEnable.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/NestedCanvasMaintainsCorrectSize.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CheckMeshColorsAndColors32Match.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CanvasSizeCorrectInAwakeAndStart.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/BridgeScriptForRetainingObjects.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/TimelineCreateUtilities.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/NotificationUtilities.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/PrefabControlPlayable.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/ParticleControlPlayable.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/DirectorControlPlayable.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/Signals/CustomSignalEventDrawer.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Animation/AnimationPlayableAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Activation/ActivationPlayableAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Activation/ActivationMixerPlayable.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ScrollbarEventHandler.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_PackageResourceImporter.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_EditorResourceManager.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/CoroutineRunner.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Tests/Runtime/Android/AndroidNotificationTests.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidNotificationChannel.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidNotificationCallback.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/StringBuilderPool.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/TableEntryData.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/SharedTableData.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedStringTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedReference.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedAssetTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Attributes/DisplayNameAttribute.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/TestObject2.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/TestObject.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerUtilityTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/LegacyResourceTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Utility/ResourceManagerEventCollector.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/InitializationObjectsOperation.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/AssetReference.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/AddressablesImpl.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/DCEL/Face.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Mesh.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Log.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Edge.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/RewardBasedVideoAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/RewardedInterstitialAd.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/CustomNativeTemplateAd.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/CustomNativeEventArgs.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdFailedToLoadEventArgs.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Util/GraphicTestHelper.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Util/ExceptionUtils.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/MaskClipping/RectMask2DClipping.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Layout/VerticalLayoutGroupTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Layout/ContentSizeFitterTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Utility/ReflectionMethodsCache.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/MultipleDisplayUtilities.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/HorizontalLayoutGroup.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/GraphicRebuildTracker.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Culling/RectangularVertexClipper.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/Raycasters/Physics2DRaycaster.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/InputModules/PointerInputModule.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AttributeHelper.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/IAsyncTestAssemblyBuilder.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/iOS/iOSNotification.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/SmartObjects.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/TestBehaviourWithReference.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/DynamicResourceLocationTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AssetReferenceTestBehavior.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AddressablesTestUtilities.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/MonoBehaviourCallbackHooks.cs
    0.1 kb 0.0% Packages/com.unity.2d.pixel-perfect/Runtime/PixelPerfectCamera.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteSkin.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshProFloatingText.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMPro_InstructionOverlay.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_UiFrameRateCounter.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextInfoDebugTool.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/InterstitialClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/BaseAdDummyClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/ResponseInfoClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/InterstitialClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IRewardedInterstitialAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/AdLoaderClientArgs.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Mediation/MediationExtras.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/TextEditor/TextEditorBackspaceDelete.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Layout/HorizonalLayoutGroupTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/InputField/TouchInputFieldTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/InputModuleTests/PointerClickCallbackCheck.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/SiblingOrderChangesLayout.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CanvasGroupInheritedAlpha.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/AnimatorBindingCache.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/TimeControlPlayable.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Evaluation/ScheduleRuntimeClip.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Evaluation/InfiniteRuntimeClip.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Control/ControlPlayableAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Audio/AudioPlayableAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Audio/AudioMixerProperties.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Audio/AudioClipProperties.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Attributes/TrackColorAttribute.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_ExtensionMethods.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextParsingUtilities.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextElement_Legacy.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteAssetImportFormats.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontAssetUtilities.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/MaterialReferenceManager.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/AddressHelper.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/StringTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/DetailedLocalizationTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/AssetTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/PseudoLocale.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Methods/PreserveTags.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Methods/Encapsulator.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/IPseudoLocalizationMethod.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedString.deprecated.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedString.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedAsset.deprecated.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Addressables.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/SpriteShapeGeometryCache.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/SplineUtility.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/Tess.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/Mesh.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/Geom.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/BezierUtility.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/IConstraintMesher.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/ResponseInfoClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/InterstitialClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/RewardBasedVideoAd.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/InitializationStatus.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/RequestConfiguration.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/MaxAdContentRating.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Util/ConcreteGraphic.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Toggle/TestableToggleGroup.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Layout/LayoutGroupScaling.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/NavigationTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/SelectableTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/SetPropertyUtility.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/VerticalLayoutGroup.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/ContentSizeFitter.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/AspectRatioFitter.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/FontUpdateTracker.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/CanvasUpdateRegistry.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/AnimationTriggers.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/Raycasters/PhysicsRaycaster.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/Raycasters/BaseRaycaster.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/RaycasterManager.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/InputModules/TouchInputModule.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/InputModules/BaseInputModule.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/ExecuteEvents.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventData/PointerEventData.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventData/BaseEventData.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventData/AxisEventData.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/TimelineAsset_CreateRemove.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/INotificationOptionProvider.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogAssert.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Tests/Runtime/iOS/iOSNotificationTests.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/iOS/iOSNotificationTriggers.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/iOS/iOSNotificationSettings.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Smart.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/Comment.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/IgnoreFailingLogMessage.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/BuiltInDataTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AddressablesTestFixture.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AddressablesImplTests.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/FabrikSolver2D.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/VertexColorCycler.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TextConsoleSimulator.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_B.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_A.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventCheck.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_PhoneNumberValidator.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_FrameRateCounter.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_ExampleScript_01.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/ShaderPropAnimator.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/MonoPInvokeCallbackAttribute.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/RewardedAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/RewardedAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/MobileAdsClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/DisplayMetrics.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/AdLoaderClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IRewardBasedVideoAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IInitializationStatusClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/ICustomNativeTemplateClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/TagForChildDirectedTreatment.cs
    0.1 kb 0.0% Assets/AdmobCode/OnEnabledAndDisabledADMOB.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/ScrollRect/ScrollRectStableLayout.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/LayoutGroup/LayoutGroupArrangement.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/InputField/FakeInputModule.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Image/ImageFilledGenerateWork.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/PhysicsRaycasterTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/GraphicRaycasterTests.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/WeightUtility.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/Extrapolation.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/TimelinePlayable.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/TimelineAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Scripting/PlayableTrack.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/Signals/SignalReceiver.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/Signals/SignalEmitter.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Evaluation/RuntimeElement.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Evaluation/RuntimeClipBase.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Animation/AnimationTrack.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Activation/ActivationTrack.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_EventManager.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_UpdateManager.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextUtilities.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextProcessingStack.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteCharacter.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteAnimator.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SelectionCaret.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_RichTextTagsCommon.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_MaterialManager.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_InputValidator.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontFeaturesCommon.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontFeatureTable.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_DefaultControls.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Compatibility.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ColorGradient.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Utils.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/Is.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidNotification.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/math_unity_conversion.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Extensions/IStartupLocaleSelector.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Methods/Mirror.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Methods/Expander.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Methods/Accenter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Message.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Operations/PreloadDatabaseOperation.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Component Localizers/LocalizedAssetBehaviour.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceLocators/DynamicResourceLocators.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/PackedPlayModeBuildLogs.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/SpriteShapeGenerator.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/SpriteShape.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/IVoronoiFactory.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/ITriangulator.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/IQualityMesher.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/IPolygonFormat.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/NativeCustomSlice.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/NativeArrayHelper.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/IKManager2DEditorData.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/RewardedAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/MobileAdsClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/AdLoaderClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/InterstitialAd.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdapterStatus.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdValueEventArgs.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdErrorEventArgs.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Util/ImageHook.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Toggle/ToggleGroupTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/ImageTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/PositionAsUV1.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/BaseMeshEffect.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/StencilMaterial.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/MaskableGraphic.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/MaskUtilities.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutUtility.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutRebuilder.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutElement.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/GridLayoutGroup.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/IGraphicEnabledDisabled.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/GraphicRegistry.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/GraphicRaycaster.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/DefaultControls.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Culling/ClipperRegistry.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/UIBehaviour.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/InputModules/BaseInput.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventTrigger.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventSystem.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Tests/Runtime/TMP_RuntimeTests.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs
    0.1 kb 0.0% Packages/com.unity.scriptablebuildpipeline/Runtime/Shared/BundleDetails.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/ComponentSingleton.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/JSONAssetProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/IResourceProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/IInstanceProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceLocations/IResourceLocation.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceLocations/ILocationSizeData.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/ProviderOperation.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/AsyncOperationStatus.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/AsyncOperationHandle.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/AsyncOperationBase.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/LimbSolver2D.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/IKUtility.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/IKManager2D.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/IKChain2D.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/CCDSolver2D.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/WarpTextExample.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshSpawner.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventHandler.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_DigitValidator.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/SkewTextExample.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/CameraController.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01_UGUI.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/BannerClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/BannerClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/DummyClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/TagForUnderAgeOfConsent.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Util/PrivateFieldSetter.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Layout/GridLayoutGroupTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/ToggleTestImageHook.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/RaycastSortingTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/InputModuleTests/DragCallbackCheck.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CreateSceneUtility.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/TimelineUndo.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/TimeUtility.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/HashUtility.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/TrackAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/TimelineClip.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/GroupTrack.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/Signals/SignalAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/SignalTrack.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/MarkerTrack.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Evaluation/RuntimeClip.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Control/ControlTrack.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Audio/AudioTrack.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TextMeshProUGUI.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TextContainer.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_UGUI_Private.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_MeshUtilities.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_UpdateRegistery.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextElement.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SubMeshUI.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_StyleSheet.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteGlyph.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteAsset.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ShaderUtilities.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ResourcesManager.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_InputField.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontAssetCommon.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontAsset.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_CoroutineTween.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_CharacterInfo.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Character.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/ITextPreProcessor.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/PropertyAttributes.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/UnsafeGenericPool.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Settings/CaseSensitivityType.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Database/LocalizedDatabase.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Locale.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/SceneTests.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/Spline.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/PriorityQueue.cs
    0.1 kb 0.0% Packages/com.unity.2d.common/Runtime/InternalBridge/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/UpdateBoundsJob.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Smoothing/ISmoother.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Properties/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IPredicates.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/IMeshFormat.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/IFileFormat.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/ITriangle.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteSkinBatch.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/BannerClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/RewardedAd.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/MobileAds.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdRequest.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/BannerView.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Toggle/ToggleTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Utility/VertexHelper.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/ToggleGroup.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Selectable.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Scrollbar.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/ScrollRect.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/RectMask2D.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/MaterialModifiers/IMaterialModifier.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutGroup.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/CanvasScaler.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/InputField.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/IPropertyCollector.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/TimelineAttributes.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Timeline.deprecated.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/NotificationFlags.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/BasicScriptPlayable.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/StacktraceFilter.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/ITestRunCallback.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/ListWithEvents.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/IUpdateReceiver.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/ISceneProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Diagnostics/DiagnosticEvent.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/DownloadStatus.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/ChainOperation.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/Solvers/FABRIK2D.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/Solvers/CCD2D.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/Solver2D.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/VertexZoom.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeB.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeA.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/VertexJitter.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/SimpleScript.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/ObjectSpin.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark04.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark03.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark02.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/Utils.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/Utils.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IRewardedAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IResponseInfoClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IInterstitialClient.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/TextEditor/TextEditorTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/ScrollRect/ScrollRectTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/ScrollRect/ScrollRectScale.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/ScrollRect/ScrollRectClamp.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/ScrollBar/ScrollBarTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/ScrollBar/ScrollBarClamp.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/InputField/InputFieldTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Image/TestableImage.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/RawImageTestHook.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/RawImageTest.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/MaskTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/GraphicTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/InputModuleTests/FakeBaseInput.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/InputModuleTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Dropdown/DropdownTests.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/Marker.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TextMeshPro.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_Private.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextInfo.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SubMesh.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Style.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Sprite.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Settings.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ObjectPool.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Dropdown.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Asset.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/FastAction.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/rigid_transform.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double4x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double4x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double4x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double3x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double3x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double3x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double2x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double2x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double2x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/classicnoise4D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/classicnoise3D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/classicnoise2D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/cellular2x2x2.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/CollectionPool.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/TableReference.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/Keys/IKeyGenerator.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Extensions/ISelectorInfo.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Extensions/IFormattingInfo.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Extensions/ILocalesProvider.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Operations/IPreloadRequired.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/JSonMetadataT.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/ISharedMetadata.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedAsset.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceLocators/IResourceLocator.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/IKeyEvaluator.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/UTess2D/Tessellator.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/UTess2D/ArraySlice.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/PriorityHeap.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/Legacy/IVoronoi.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/IMesh.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Logging/ILogItem.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/ISegment.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/IPolygon.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/IEdge.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Enums.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Components.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/Utils.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/Externs.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/Reward.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdValue.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdSize.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/AdLoader.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/Shadow.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/Outline.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/IMeshModifier.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Toggle.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Slider.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/RawImage.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/ILayoutElement.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Image.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Graphic.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/FontData.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Dropdown.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Culling/Clipping.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Button.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Animation/CoroutineTween.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/RaycastResult.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/MoveDirection.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventTriggerType.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventInterfaces.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/IPropertyPreview.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Extensions/TrackExtensions.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/AssetUpgrade/TimelineUpgrade.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/TestPlatform.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/math.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/Exceptions.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/DelegateList.cs
    0.1 kb 0.0% Packages/com.unity.2d.pixel-perfect/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.2d.common/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/Solvers/Limb.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TeleType.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/EnvMapAnimator.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/DropdownSample.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/ChatController.cs
    0.1 kb 0.0% Assets/Scripts/menuDuzenleme.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/DummyAdBehaviour.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/ButtonBehaviour.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IMobileAdsClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IClientFactory.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IBannerClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IAdLoaderClient.cs
    0.1 kb 0.0% Assets/AdmobCode/Scrıpts/VG_RequestADS.cs
    0.1 kb 0.0% Assets/AdmobCode/Scrıpts/VG_GoogleAdmob.cs
    0.1 kb 0.0% Assets/AdmobCode/Scrıpts/UnikDontDestroy.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Slider/SliderTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Image/ImageTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/InputModuleTests/MouseUpdate.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/NestedCanvas.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Button/TestButton.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Button/ButtonTests.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Text.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_MeshInfo.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ListPool.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_LineInfo.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint4x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint4x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint4x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint3x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint3x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint3x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint2x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint2x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint2x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/quaternion.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/matrix.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int4x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int4x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int4x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int3x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int3x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int3x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int2x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int2x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int2x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/half4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/half3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/half2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float4x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float4x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float4x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float3x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float3x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float3x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float2x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float2x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float2x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool4x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool4x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool4x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool3x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool3x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool3x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool2x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool2x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool2x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/psrdnoise2D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/noise3Dgrad.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/cellular3D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/cellular2x2.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/cellular2D.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/PooledObject.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/ObjectPools.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/LinkedPool.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/IObjectPool.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/GenericPool.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/JsonSource.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Settings/ErrorAction.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Extensions/IFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Extensions/IInitialize.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/IMetadata.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/Sweep.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/Otri.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/Osub.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Logging/ILog.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Utility/ObjectPool.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Text.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/SpriteState.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/SpecializedCollections/IndexedSet.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Navigation.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Misc.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Mask.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/IMaskable.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Culling/IClipRegion.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/ColorBlock.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/Properties/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventHandle.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Properties/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/ITimeControl.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/ILayerable.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/MarkerList.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Evaluation/IntervalTree.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/DiscreteTime.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/AssetUpgrade/TrackUpgrade.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/AssetUpgrade/ClipUpgrade.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Animation/ICurvesOwner.cs
    0.1 kb 0.0% Assets/Scripts/tekKisilik.cs
    0.1 kb 0.0% Assets/Scripts/sahneGecisi.cs
    0.1 kb 0.0% Assets/Scripts/rakamYazma2.cs
    0.1 kb 0.0% Assets/Scripts/rakamYazma.cs
    0.1 kb 0.0% Assets/Scripts/ciftKisilik.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/Countdown.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/ResponseInfo.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/NativeAdType.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdPosition.cs
    0.1 kb 0.0% Assets/AdmobCode/ButtonADMOB.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/random.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/matrix.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/noise4D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/noise3D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/noise2D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/common.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Output/IOutput.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Extensions/ISource.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/Dict.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Resources/GoogleMobileAdsSettings.asset
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Utility/ListPool.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/IMask.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/IMarker.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/ClipCaps.cs
    0.1 kb 0.0% Assets/Scripts/local.cs
    0.1 kb 0.0% Assets/Scripts/ayarlar.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/Gender.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/half.cs
    -------------------------------------------------------------------------------
    Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
    System memory in use before: 154.2 MB.
    System memory in use after: 153.6 MB.

    Unloading 201 unused Assets to reduce memory usage. Loaded Objects now: 4220.
    Total: 835.963900 ms (FindLiveObjects: 1.081600 ms CreateObjectMapping: 0.472000 ms MarkObjects: 833.032700 ms DeleteObjects: 1.373500 ms)

    DisplayProgressNotification: Build Successful
    Unloading 6 Unused Serialized files (Serialized files now loaded: 0)
    Loaded scene 'Temp/__Backupscenes/0.backup'
    Deserialize: 720.703 ms
    Integration: 633.325 ms
    Integration of assets: 0.519 ms
    Thread Wait Time: 17.385 ms
    Total Operation Time: 1371.932 ms
    System memory in use before: 150.0 MB.
    System memory in use after: 150.3 MB.

    Unloading 0 unused Assets to reduce memory usage. Loaded Objects now: 4402.
    Total: 1480.822700 ms (FindLiveObjects: 2.220100 ms CreateObjectMapping: 0.780800 ms MarkObjects: 1477.795700 ms DeleteObjects: 0.023300 ms)

    Build completed with a result of 'Succeeded' in 307 seconds (307312 ms)
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21634d88 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e215f091b (Mono JIT Code) UnityEditor.BuildPlayerWindow/DefaultBuildMethods:BuildPlayer (UnityEditor.BuildPlayerOptions)
    0x0000022e20facc0b (Mono JIT Code) UnityEditor.BuildPlayerWindow:CallBuildMethods (bool,UnityEditor.BuildOptions)
    0x0000022e20fa90f3 (Mono JIT Code) UnityEditor.BuildPlayerWindow:GUIBuildButtons (UnityEditor.Modules.IBuildWindowExtension,bool,bool,bool,UnityEditor.Build.BuildPlatform)
    0x0000022e20f9d993 (Mono JIT Code) UnityEditor.BuildPlayerWindow:ShowBuildTargetSettings ()
    0x0000022e20f96493 (Mono JIT Code) UnityEditor.BuildPlayerWindow:OnGUI ()
    0x0000022d74f484f3 (Mono JIT Code) UnityEditor.HostView:InvokeOnGUI (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f482a3 (Mono JIT Code) UnityEditor.DockArea:DrawView (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f3bf73 (Mono JIT Code) UnityEditor.DockArea:OldOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Refresh completed in 0.086182 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 86.136ms
    Start ondemand import (priority ImportantBackground): Assets/Plugins/Android (Guid(2f5d736f7c4cb4c1e80d0816d0e81625) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    <RI> Initialized touch support.

    No valid Resources found to move
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e215696f3 (Mono JIT Code) [AddressableAssetUtility.cs:232] UnityEditor.AddressableAssets.Settings.AddressableAssetUtility:SafeMoveResourcesToGroup (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEditor.AddressableAssets.Settings.AddressableAssetGroup,System.Collections.Generic.List`1<string>,System.Collections.Generic.List`1<string>,bool)
    0x0000022e21568afb (Mono JIT Code) [AssetInspectorGUI.cs:61] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:SetAaEntry (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEngine.Object[],bool)
    0x0000022d760ec1bb (Mono JIT Code) [AssetInspectorGUI.cs:136] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:OnPostHeaderGUI (UnityEditor.Editor)
    0x0000022d760d270d (Mono JIT Code) UnityEditor.Editor:DrawHeader ()
    0x0000022d760d2073 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorLargeHeader (UnityEditor.Editor[],bool&)
    0x0000022d760d1be3 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorHeader (UnityEditor.Editor[],UnityEngine.Object,bool&)
    0x0000022d760d0f4b (Mono JIT Code) UnityEditor.UIElements.EditorElement:HeaderOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Start ondemand import (priority ImportantBackground): Assets/Scenes/ayarlar.unity (Guid(2df5a7f85eec8214daca1dbfb16e254d) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    No valid Resources found to move
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e215696f3 (Mono JIT Code) [AddressableAssetUtility.cs:232] UnityEditor.AddressableAssets.Settings.AddressableAssetUtility:SafeMoveResourcesToGroup (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEditor.AddressableAssets.Settings.AddressableAssetGroup,System.Collections.Generic.List`1<string>,System.Collections.Generic.List`1<string>,bool)
    0x0000022e21568afb (Mono JIT Code) [AssetInspectorGUI.cs:61] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:SetAaEntry (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEngine.Object[],bool)
    0x0000022d760ec1bb (Mono JIT Code) [AssetInspectorGUI.cs:136] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:OnPostHeaderGUI (UnityEditor.Editor)
    0x0000022d760d270d (Mono JIT Code) UnityEditor.Editor:DrawHeader ()
    0x0000022d760d2073 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorLargeHeader (UnityEditor.Editor[],bool&)
    0x0000022d760d1be3 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorHeader (UnityEditor.Editor[],UnityEngine.Object,bool&)
    0x0000022d760d0f4b (Mono JIT Code) UnityEditor.UIElements.EditorElement:HeaderOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    A scene from the EditorBuildScenes list has been marked as addressable. It has thus been disabled in the build scenes list. Assets/Scenes/ayarlar.unity
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e20f93d4b (Mono JIT Code) [AddressableScenesManager.cs:82] UnityEditor.AddressableAssets.Settings.AddressableScenesManager:CheckForScenesInBuildList (System.Collections.Generic.IList`1<UnityEditor.AddressableAssets.Settings.AddressableAssetEntry>)
    0x0000022e20f09c5b (Mono JIT Code) [AddressableScenesManager.cs:38] UnityEditor.AddressableAssets.Settings.AddressableScenesManager:OnSettingsChanged (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEditor.AddressableAssets.Settings.AddressableAssetSettings/ModificationEvent,object)
    0x0000022e20f09a79 (Mono JIT Code) [AddressableAssetSettings.cs:1330] UnityEditor.AddressableAssets.Settings.AddressableAssetSettings:SetDirty (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings/ModificationEvent,object,bool,bool)
    0x0000022e21568e4b (Mono JIT Code) [AssetInspectorGUI.cs:79] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:SetAaEntry (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEngine.Object[],bool)
    0x0000022d760ec1bb (Mono JIT Code) [AssetInspectorGUI.cs:136] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:OnPostHeaderGUI (UnityEditor.Editor)
    0x0000022d760d270d (Mono JIT Code) UnityEditor.Editor:DrawHeader ()
    0x0000022d760d2073 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorLargeHeader (UnityEditor.Editor[],bool&)
    0x0000022d760d1be3 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorHeader (UnityEditor.Editor[],UnityEngine.Object,bool&)
    0x0000022d760d0f4b (Mono JIT Code) UnityEditor.UIElements.EditorElement:HeaderOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    No valid Resources found to move
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e215696f3 (Mono JIT Code) [AddressableAssetUtility.cs:232] UnityEditor.AddressableAssets.Settings.AddressableAssetUtility:SafeMoveResourcesToGroup (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEditor.AddressableAssets.Settings.AddressableAssetGroup,System.Collections.Generic.List`1<string>,System.Collections.Generic.List`1<string>,bool)
    0x0000022e21568afb (Mono JIT Code) [AssetInspectorGUI.cs:61] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:SetAaEntry (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEngine.Object[],bool)
    0x0000022d760ec1bb (Mono JIT Code) [AssetInspectorGUI.cs:136] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:OnPostHeaderGUI (UnityEditor.Editor)
    0x0000022d760d270d (Mono JIT Code) UnityEditor.Editor:DrawHeader ()
    0x0000022d760d2073 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorLargeHeader (UnityEditor.Editor[],bool&)
    0x0000022d760d1be3 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorHeader (UnityEditor.Editor[],UnityEngine.Object,bool&)
    0x0000022d760d0f4b (Mono JIT Code) UnityEditor.UIElements.EditorElement:HeaderOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    A scene from the EditorBuildScenes list has been marked as addressable. It has thus been disabled in the build scenes list. Assets/Scenes/menu.unity
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e20f93d4b (Mono JIT Code) [AddressableScenesManager.cs:82] UnityEditor.AddressableAssets.Settings.AddressableScenesManager:CheckForScenesInBuildList (System.Collections.Generic.IList`1<UnityEditor.AddressableAssets.Settings.AddressableAssetEntry>)
    0x0000022e20f09c5b (Mono JIT Code) [AddressableScenesManager.cs:38] UnityEditor.AddressableAssets.Settings.AddressableScenesManager:OnSettingsChanged (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEditor.AddressableAssets.Settings.AddressableAssetSettings/ModificationEvent,object)
    0x0000022e20f09a79 (Mono JIT Code) [AddressableAssetSettings.cs:1330] UnityEditor.AddressableAssets.Settings.AddressableAssetSettings:SetDirty (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings/ModificationEvent,object,bool,bool)
    0x0000022e21568e4b (Mono JIT Code) [AssetInspectorGUI.cs:79] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:SetAaEntry (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEngine.Object[],bool)
    0x0000022d760ec1bb (Mono JIT Code) [AssetInspectorGUI.cs:136] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:OnPostHeaderGUI (UnityEditor.Editor)
    0x0000022d760d270d (Mono JIT Code) UnityEditor.Editor:DrawHeader ()
    0x0000022d760d2073 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorLargeHeader (UnityEditor.Editor[],bool&)
    0x0000022d760d1be3 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorHeader (UnityEditor.Editor[],UnityEngine.Object,bool&)
    0x0000022d760d0f4b (Mono JIT Code) UnityEditor.UIElements.EditorElement:HeaderOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    A scene from the EditorBuildScenes list has been marked as addressable. It has thus been disabled in the build scenes list. Assets/Scenes/tekKisilik.unity
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e20f93d4b (Mono JIT Code) [AddressableScenesManager.cs:82] UnityEditor.AddressableAssets.Settings.AddressableScenesManager:CheckForScenesInBuildList (System.Collections.Generic.IList`1<UnityEditor.AddressableAssets.Settings.AddressableAssetEntry>)
    0x0000022e20f09c5b (Mono JIT Code) [AddressableScenesManager.cs:38] UnityEditor.AddressableAssets.Settings.AddressableScenesManager:OnSettingsChanged (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEditor.AddressableAssets.Settings.AddressableAssetSettings/ModificationEvent,object)
    0x0000022e20f09a79 (Mono JIT Code) [AddressableAssetSettings.cs:1330] UnityEditor.AddressableAssets.Settings.AddressableAssetSettings:SetDirty (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings/ModificationEvent,object,bool,bool)
    0x0000022e21568e4b (Mono JIT Code) [AssetInspectorGUI.cs:79] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:SetAaEntry (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEngine.Object[],bool)
    0x0000022d760ec1bb (Mono JIT Code) [AssetInspectorGUI.cs:136] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:OnPostHeaderGUI (UnityEditor.Editor)
    0x0000022d760d270d (Mono JIT Code) UnityEditor.Editor:DrawHeader ()
    0x0000022d760d2073 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorLargeHeader (UnityEditor.Editor[],bool&)
    0x0000022d760d1be3 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorHeader (UnityEditor.Editor[],UnityEngine.Object,bool&)
    0x0000022d760d0f4b (Mono JIT Code) UnityEditor.UIElements.EditorElement:HeaderOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    A scene from the EditorBuildScenes list has been marked as addressable. It has thus been disabled in the build scenes list. Assets/Scenes/ciftKisilik.unity
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e20f93d4b (Mono JIT Code) [AddressableScenesManager.cs:82] UnityEditor.AddressableAssets.Settings.AddressableScenesManager:CheckForScenesInBuildList (System.Collections.Generic.IList`1<UnityEditor.AddressableAssets.Settings.AddressableAssetEntry>)
    0x0000022e20f09c5b (Mono JIT Code) [AddressableScenesManager.cs:38] UnityEditor.AddressableAssets.Settings.AddressableScenesManager:OnSettingsChanged (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEditor.AddressableAssets.Settings.AddressableAssetSettings/ModificationEvent,object)
    0x0000022e20f09a79 (Mono JIT Code) [AddressableAssetSettings.cs:1330] UnityEditor.AddressableAssets.Settings.AddressableAssetSettings:SetDirty (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings/ModificationEvent,object,bool,bool)
    0x0000022e21568e4b (Mono JIT Code) [AssetInspectorGUI.cs:79] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:SetAaEntry (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEngine.Object[],bool)
    0x0000022d760ec1bb (Mono JIT Code) [AssetInspectorGUI.cs:136] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:OnPostHeaderGUI (UnityEditor.Editor)
    0x0000022d760d270d (Mono JIT Code) UnityEditor.Editor:DrawHeader ()
    0x0000022d760d2073 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorLargeHeader (UnityEditor.Editor[],bool&)
    0x0000022d760d1be3 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorHeader (UnityEditor.Editor[],UnityEngine.Object,bool&)
    0x0000022d760d0f4b (Mono JIT Code) UnityEditor.UIElements.EditorElement:HeaderOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Start importing Assets/AddressableAssetsData/AssetGroups/Default Local Group.asset using Guid(ebff09b1d9a9aa54787bbc119250a48e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '96353df5c262e854c264f93e09075ed3') in 0.005991 seconds
    Start importing ProjectSettings/EditorBuildSettings.asset using Guid(0000000000000000b000000000000000) Importer(-1,00000000000000000000000000000000) -> (artifact id: '1eadc8008824654e9833570c16ed4aad') in 0.077437 seconds
    Refreshing native plugins compatible for Editor in 2.33 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 3766.073ms
    InvokeBeforeRefreshCallbacks: 0.001ms
    ApplyChangesToAssetFolders: 0.145ms
    Scan: 5.834ms
    OnSourceAssetsModified: 0.054ms
    InitializeImportedAssetsSnapshot: 7.769ms
    GetAllGuidsForCategorization: 0.345ms
    CategorizeAssets: 2.962ms
    ImportAndPostprocessOutOfDateAssets: 3723.979ms (2.556ms without children)
    ImportManagerImport: 140.172ms (3.020ms without children)
    ImportInProcess: 137.094ms
    UpdateCategorizedAssets: 0.058ms
    PostProcessAllAssets: 3570.623ms
    ReloadImportedAssets: 0.523ms
    EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.553ms
    InitializingProgressBar: 0.005ms
    PostProcessAllAssetNotificationsAddChangedAssets: 0.381ms
    OnDemandSchedulerStart: 0.417ms
    RestoreLoadedAssetsState: 3.064ms
    UpdateImportedAssetsSnapshot: 5.685ms
    ReloadSourceAssets: 1.338ms
    UnloadImportedAssets: 0.336ms
    Hotreload: 4.281ms
    FixTempGuids: 0.004ms
    GatherAllCurrentPrimaryArtifactRevisions: 0.302ms
    UnloadStreamsBegin: 0.426ms
    LoadedImportedAssetsSnapshotReleaseGCHandles: 2.123ms
    GetLoadedSourceAssetsSnapshot: 6.604ms
    PersistCurrentRevisions: 0.396ms
    UnloadStreamsEnd: 1.024ms
    Untracked: 8.150ms
    Refresh completed in 0.010175 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 10.138ms
    <RI> Initialized touch support.

    No valid Resources found to move
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e215696f3 (Mono JIT Code) [AddressableAssetUtility.cs:232] UnityEditor.AddressableAssets.Settings.AddressableAssetUtility:SafeMoveResourcesToGroup (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEditor.AddressableAssets.Settings.AddressableAssetGroup,System.Collections.Generic.List`1<string>,System.Collections.Generic.List`1<string>,bool)
    0x0000022e21568afb (Mono JIT Code) [AssetInspectorGUI.cs:61] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:SetAaEntry (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEngine.Object[],bool)
    0x0000022d760ec1bb (Mono JIT Code) [AssetInspectorGUI.cs:136] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:OnPostHeaderGUI (UnityEditor.Editor)
    0x0000022d760d270d (Mono JIT Code) UnityEditor.Editor:DrawHeader ()
    0x0000022d760d2073 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorLargeHeader (UnityEditor.Editor[],bool&)
    0x0000022d760d1be3 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorHeader (UnityEditor.Editor[],UnityEngine.Object,bool&)
    0x0000022d760d0f4b (Mono JIT Code) UnityEditor.UIElements.EditorElement:HeaderOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    No valid Resources found to move
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e215696f3 (Mono JIT Code) [AddressableAssetUtility.cs:232] UnityEditor.AddressableAssets.Settings.AddressableAssetUtility:SafeMoveResourcesToGroup (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEditor.AddressableAssets.Settings.AddressableAssetGroup,System.Collections.Generic.List`1<string>,System.Collections.Generic.List`1<string>,bool)
    0x0000022e21568afb (Mono JIT Code) [AssetInspectorGUI.cs:61] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:SetAaEntry (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEngine.Object[],bool)
    0x0000022d760ec1bb (Mono JIT Code) [AssetInspectorGUI.cs:136] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:OnPostHeaderGUI (UnityEditor.Editor)
    0x0000022d760d270d (Mono JIT Code) UnityEditor.Editor:DrawHeader ()
    0x0000022d760d2073 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorLargeHeader (UnityEditor.Editor[],bool&)
    0x0000022d760d1be3 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorHeader (UnityEditor.Editor[],UnityEngine.Object,bool&)
    0x0000022d760d0f4b (Mono JIT Code) UnityEditor.UIElements.EditorElement:HeaderOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    No valid Resources found to move
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e215696f3 (Mono JIT Code) [AddressableAssetUtility.cs:232] UnityEditor.AddressableAssets.Settings.AddressableAssetUtility:SafeMoveResourcesToGroup (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEditor.AddressableAssets.Settings.AddressableAssetGroup,System.Collections.Generic.List`1<string>,System.Collections.Generic.List`1<string>,bool)
    0x0000022e21568afb (Mono JIT Code) [AssetInspectorGUI.cs:61] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:SetAaEntry (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEngine.Object[],bool)
    0x0000022d760ec1bb (Mono JIT Code) [AssetInspectorGUI.cs:136] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:OnPostHeaderGUI (UnityEditor.Editor)
    0x0000022d760d270d (Mono JIT Code) UnityEditor.Editor:DrawHeader ()
    0x0000022d760d2073 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorLargeHeader (UnityEditor.Editor[],bool&)
    0x0000022d760d1be3 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorHeader (UnityEditor.Editor[],UnityEngine.Object,bool&)
    0x0000022d760d0f4b (Mono JIT Code) UnityEditor.UIElements.EditorElement:HeaderOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    No valid Resources found to move
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e215696f3 (Mono JIT Code) [AddressableAssetUtility.cs:232] UnityEditor.AddressableAssets.Settings.AddressableAssetUtility:SafeMoveResourcesToGroup (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEditor.AddressableAssets.Settings.AddressableAssetGroup,System.Collections.Generic.List`1<string>,System.Collections.Generic.List`1<string>,bool)
    0x0000022e21568afb (Mono JIT Code) [AssetInspectorGUI.cs:61] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:SetAaEntry (UnityEditor.AddressableAssets.Settings.AddressableAssetSettings,UnityEngine.Object[],bool)
    0x0000022d760ec1bb (Mono JIT Code) [AssetInspectorGUI.cs:136] UnityEditor.AddressableAssets.GUI.AddressableAssetInspectorGUI:OnPostHeaderGUI (UnityEditor.Editor)
    0x0000022d760d270d (Mono JIT Code) UnityEditor.Editor:DrawHeader ()
    0x0000022d760d2073 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorLargeHeader (UnityEditor.Editor[],bool&)
    0x0000022d760d1be3 (Mono JIT Code) UnityEditor.UIElements.EditorElement:DrawEditorHeader (UnityEditor.Editor[],UnityEngine.Object,bool&)
    0x0000022d760d0f4b (Mono JIT Code) UnityEditor.UIElements.EditorElement:HeaderOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Refresh completed in 0.014851 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 14.774ms
    <RI> Initialized touch support.

    An addressable scene was added to the build scenes list and can thus no longer be addressable. Assets/Scenes/ciftKisilik.unity
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e2156acbb (Mono JIT Code) [AddressableScenesManager.cs:58] UnityEditor.AddressableAssets.Settings.AddressableScenesManager:OnScenesChanged ()
    0x0000022d74fbd682 (Mono JIT Code) (wrapper delegate-invoke) <Module>:invoke_void ()
    0x0000022e2156ab2c (Mono JIT Code) [BuiltinSceneCache.cs:126] UnityEditor.AddressableAssets.Settings.BuiltinSceneCache:EditorBuildSettings_sceneListChanged ()
    0x0000022d74fbd682 (Mono JIT Code) (wrapper delegate-invoke) <Module>:invoke_void ()
    0x0000022e2156aa43 (Mono JIT Code) UnityEditor.EditorBuildSettings:SceneListChanged ()
    0x0000022e1e76bc2d (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa8205e2 (Unity) Scripting::UnityEditor::EditorBuildSettingsProxy::SceneListChanged
    0x00007ff7acc15548 (Unity) EditorBuildSettings::SetScenes
    0x00007ff7ade54db7 (Unity) EditorBuildSettings_CUSTOM_SetEditorBuildSettingsScenes
    0x0000022e2156a957 (Mono JIT Code) (wrapper managed-to-native) UnityEditor.EditorBuildSettings:SetEditorBuildSettingsScenes (UnityEditor.EditorBuildSettingsScene[])
    0x0000022e2156a89b (Mono JIT Code) UnityEditor.EditorBuildSettings:set_scenes (UnityEditor.EditorBuildSettingsScene[])
    0x0000022e20faacdb (Mono JIT Code) UnityEditor.BuildPlayerSceneTreeView:RowGUI (UnityEditor.IMGUI.Controls.TreeView/RowGUIArgs)
    0x0000022e20f1923f (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeView/TreeViewControlGUI:OnContentGUI (UnityEngine.Rect,int,UnityEditor.IMGUI.Controls.TreeViewItem,string,bool,bool,bool,bool)
    0x0000022d7504b708 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewGUI:DoItemGUI (UnityEngine.Rect,int,UnityEditor.IMGUI.Controls.TreeViewItem,bool,bool,bool)
    0x0000022d75048648 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewGUI:OnRowGUI (UnityEngine.Rect,UnityEditor.IMGUI.Controls.TreeViewItem,int,bool,bool)
    0x0000022d75048076 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewController:DoItemGUI (UnityEditor.IMGUI.Controls.TreeViewItem,int,single,bool)
    0x0000022d7504783b (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewController:IterateVisibleItems (int,int,single,bool)
    0x0000022d7504616b (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewController:OnGUI (UnityEngine.Rect,int)
    0x0000022e20f11be3 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeView:OnGUI (UnityEngine.Rect)
    0x0000022e20f97a60 (Mono JIT Code) UnityEditor.BuildPlayerWindow:ActiveScenesGUI ()
    0x0000022e20f9618b (Mono JIT Code) UnityEditor.BuildPlayerWindow:OnGUI ()
    0x0000022d74f484f3 (Mono JIT Code) UnityEditor.HostView:InvokeOnGUI (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f482a3 (Mono JIT Code) UnityEditor.DockArea:DrawView (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f3bf73 (Mono JIT Code) UnityEditor.DockArea:OldOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    An addressable scene was added to the build scenes list and can thus no longer be addressable. Assets/Scenes/tekKisilik.unity
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e2156acbb (Mono JIT Code) [AddressableScenesManager.cs:58] UnityEditor.AddressableAssets.Settings.AddressableScenesManager:OnScenesChanged ()
    0x0000022d74fbd682 (Mono JIT Code) (wrapper delegate-invoke) <Module>:invoke_void ()
    0x0000022e2156ab2c (Mono JIT Code) [BuiltinSceneCache.cs:126] UnityEditor.AddressableAssets.Settings.BuiltinSceneCache:EditorBuildSettings_sceneListChanged ()
    0x0000022d74fbd682 (Mono JIT Code) (wrapper delegate-invoke) <Module>:invoke_void ()
    0x0000022e2156aa43 (Mono JIT Code) UnityEditor.EditorBuildSettings:SceneListChanged ()
    0x0000022e1e76bc2d (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa8205e2 (Unity) Scripting::UnityEditor::EditorBuildSettingsProxy::SceneListChanged
    0x00007ff7acc15548 (Unity) EditorBuildSettings::SetScenes
    0x00007ff7ade54db7 (Unity) EditorBuildSettings_CUSTOM_SetEditorBuildSettingsScenes
    0x0000022e2156a957 (Mono JIT Code) (wrapper managed-to-native) UnityEditor.EditorBuildSettings:SetEditorBuildSettingsScenes (UnityEditor.EditorBuildSettingsScene[])
    0x0000022e2156a89b (Mono JIT Code) UnityEditor.EditorBuildSettings:set_scenes (UnityEditor.EditorBuildSettingsScene[])
    0x0000022e20faacdb (Mono JIT Code) UnityEditor.BuildPlayerSceneTreeView:RowGUI (UnityEditor.IMGUI.Controls.TreeView/RowGUIArgs)
    0x0000022e20f1923f (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeView/TreeViewControlGUI:OnContentGUI (UnityEngine.Rect,int,UnityEditor.IMGUI.Controls.TreeViewItem,string,bool,bool,bool,bool)
    0x0000022d7504b708 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewGUI:DoItemGUI (UnityEngine.Rect,int,UnityEditor.IMGUI.Controls.TreeViewItem,bool,bool,bool)
    0x0000022d75048648 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewGUI:OnRowGUI (UnityEngine.Rect,UnityEditor.IMGUI.Controls.TreeViewItem,int,bool,bool)
    0x0000022d75048076 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewController:DoItemGUI (UnityEditor.IMGUI.Controls.TreeViewItem,int,single,bool)
    0x0000022d7504783b (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewController:IterateVisibleItems (int,int,single,bool)
    0x0000022d7504616b (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewController:OnGUI (UnityEngine.Rect,int)
    0x0000022e20f11be3 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeView:OnGUI (UnityEngine.Rect)
    0x0000022e20f97a60 (Mono JIT Code) UnityEditor.BuildPlayerWindow:ActiveScenesGUI ()
    0x0000022e20f9618b (Mono JIT Code) UnityEditor.BuildPlayerWindow:OnGUI ()
    0x0000022d74f484f3 (Mono JIT Code) UnityEditor.HostView:InvokeOnGUI (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f482a3 (Mono JIT Code) UnityEditor.DockArea:DrawView (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f3bf73 (Mono JIT Code) UnityEditor.DockArea:OldOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    An addressable scene was added to the build scenes list and can thus no longer be addressable. Assets/Scenes/menu.unity
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e2156acbb (Mono JIT Code) [AddressableScenesManager.cs:58] UnityEditor.AddressableAssets.Settings.AddressableScenesManager:OnScenesChanged ()
    0x0000022d74fbd682 (Mono JIT Code) (wrapper delegate-invoke) <Module>:invoke_void ()
    0x0000022e2156ab2c (Mono JIT Code) [BuiltinSceneCache.cs:126] UnityEditor.AddressableAssets.Settings.BuiltinSceneCache:EditorBuildSettings_sceneListChanged ()
    0x0000022d74fbd682 (Mono JIT Code) (wrapper delegate-invoke) <Module>:invoke_void ()
    0x0000022e2156aa43 (Mono JIT Code) UnityEditor.EditorBuildSettings:SceneListChanged ()
    0x0000022e1e76bc2d (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa8205e2 (Unity) Scripting::UnityEditor::EditorBuildSettingsProxy::SceneListChanged
    0x00007ff7acc15548 (Unity) EditorBuildSettings::SetScenes
    0x00007ff7ade54db7 (Unity) EditorBuildSettings_CUSTOM_SetEditorBuildSettingsScenes
    0x0000022e2156a957 (Mono JIT Code) (wrapper managed-to-native) UnityEditor.EditorBuildSettings:SetEditorBuildSettingsScenes (UnityEditor.EditorBuildSettingsScene[])
    0x0000022e2156a89b (Mono JIT Code) UnityEditor.EditorBuildSettings:set_scenes (UnityEditor.EditorBuildSettingsScene[])
    0x0000022e20faacdb (Mono JIT Code) UnityEditor.BuildPlayerSceneTreeView:RowGUI (UnityEditor.IMGUI.Controls.TreeView/RowGUIArgs)
    0x0000022e20f1923f (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeView/TreeViewControlGUI:OnContentGUI (UnityEngine.Rect,int,UnityEditor.IMGUI.Controls.TreeViewItem,string,bool,bool,bool,bool)
    0x0000022d7504b708 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewGUI:DoItemGUI (UnityEngine.Rect,int,UnityEditor.IMGUI.Controls.TreeViewItem,bool,bool,bool)
    0x0000022d75048648 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewGUI:OnRowGUI (UnityEngine.Rect,UnityEditor.IMGUI.Controls.TreeViewItem,int,bool,bool)
    0x0000022d75048076 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewController:DoItemGUI (UnityEditor.IMGUI.Controls.TreeViewItem,int,single,bool)
    0x0000022d7504783b (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewController:IterateVisibleItems (int,int,single,bool)
    0x0000022d7504616b (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewController:OnGUI (UnityEngine.Rect,int)
    0x0000022e20f11be3 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeView:OnGUI (UnityEngine.Rect)
    0x0000022e20f97a60 (Mono JIT Code) UnityEditor.BuildPlayerWindow:ActiveScenesGUI ()
    0x0000022e20f9618b (Mono JIT Code) UnityEditor.BuildPlayerWindow:OnGUI ()
    0x0000022d74f484f3 (Mono JIT Code) UnityEditor.HostView:InvokeOnGUI (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f482a3 (Mono JIT Code) UnityEditor.DockArea:DrawView (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f3bf73 (Mono JIT Code) UnityEditor.DockArea:OldOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    An addressable scene was added to the build scenes list and can thus no longer be addressable. Assets/Scenes/ayarlar.unity
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21640a38 (Mono JIT Code) UnityEngine.Debug:LogWarning (object)
    0x0000022e2156acbb (Mono JIT Code) [AddressableScenesManager.cs:58] UnityEditor.AddressableAssets.Settings.AddressableScenesManager:OnScenesChanged ()
    0x0000022d74fbd682 (Mono JIT Code) (wrapper delegate-invoke) <Module>:invoke_void ()
    0x0000022e2156ab2c (Mono JIT Code) [BuiltinSceneCache.cs:126] UnityEditor.AddressableAssets.Settings.BuiltinSceneCache:EditorBuildSettings_sceneListChanged ()
    0x0000022d74fbd682 (Mono JIT Code) (wrapper delegate-invoke) <Module>:invoke_void ()
    0x0000022e2156aa43 (Mono JIT Code) UnityEditor.EditorBuildSettings:SceneListChanged ()
    0x0000022e1e76bc2d (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa8205e2 (Unity) Scripting::UnityEditor::EditorBuildSettingsProxy::SceneListChanged
    0x00007ff7acc15548 (Unity) EditorBuildSettings::SetScenes
    0x00007ff7ade54db7 (Unity) EditorBuildSettings_CUSTOM_SetEditorBuildSettingsScenes
    0x0000022e2156a957 (Mono JIT Code) (wrapper managed-to-native) UnityEditor.EditorBuildSettings:SetEditorBuildSettingsScenes (UnityEditor.EditorBuildSettingsScene[])
    0x0000022e2156a89b (Mono JIT Code) UnityEditor.EditorBuildSettings:set_scenes (UnityEditor.EditorBuildSettingsScene[])
    0x0000022e20faacdb (Mono JIT Code) UnityEditor.BuildPlayerSceneTreeView:RowGUI (UnityEditor.IMGUI.Controls.TreeView/RowGUIArgs)
    0x0000022e20f1923f (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeView/TreeViewControlGUI:OnContentGUI (UnityEngine.Rect,int,UnityEditor.IMGUI.Controls.TreeViewItem,string,bool,bool,bool,bool)
    0x0000022d7504b708 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewGUI:DoItemGUI (UnityEngine.Rect,int,UnityEditor.IMGUI.Controls.TreeViewItem,bool,bool,bool)
    0x0000022d75048648 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewGUI:OnRowGUI (UnityEngine.Rect,UnityEditor.IMGUI.Controls.TreeViewItem,int,bool,bool)
    0x0000022d75048076 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewController:DoItemGUI (UnityEditor.IMGUI.Controls.TreeViewItem,int,single,bool)
    0x0000022d7504783b (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewController:IterateVisibleItems (int,int,single,bool)
    0x0000022d7504616b (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeViewController:OnGUI (UnityEngine.Rect,int)
    0x0000022e20f11be3 (Mono JIT Code) UnityEditor.IMGUI.Controls.TreeView:OnGUI (UnityEngine.Rect)
    0x0000022e20f97a60 (Mono JIT Code) UnityEditor.BuildPlayerWindow:ActiveScenesGUI ()
    0x0000022e20f9618b (Mono JIT Code) UnityEditor.BuildPlayerWindow:OnGUI ()
    0x0000022d74f484f3 (Mono JIT Code) UnityEditor.HostView:InvokeOnGUI (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f482a3 (Mono JIT Code) UnityEditor.DockArea:DrawView (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f3bf73 (Mono JIT Code) UnityEditor.DockArea:OldOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Copying Addressables data from Library/com.unity.addressables/aa/Android to C:/Users/Dell/Desktop/atii/unity/NumberEstimateV3/Assets/StreamingAssets/aa. These copies will be deleted at the end of the build.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21634d88 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e21634c8b (Mono JIT Code) [AddressablesPlayerBuildProcessor.cs:53] AddressablesPlayerBuildProcessor:CopyTemporaryPlayerBuildData ()
    0x0000022e21634bbb (Mono JIT Code) [AddressablesPlayerBuildProcessor.cs:43] AddressablesPlayerBuildProcessor:OnPreprocessBuild (UnityEditor.Build.Reporting.BuildReport)
    0x0000022e215fee3d (Mono JIT Code) UnityEditor.Build.BuildPipelineInterfaces/<>c__DisplayClass15_0:<OnBuildPreProcess>b__1 (UnityEditor.Build.IPreprocessBuildWithReport)
    0x0000022d74f9f919 (Mono JIT Code) UnityEditor.Build.BuildPipelineInterfaces:InvokeCallbackInterfacesPair<T1_REF, T2_REF> (System.Collections.Generic.List`1<T1_REF>,System.Action`1<T1_REF>,System.Collections.Generic.List`1<T2_REF>,System.Action`1<T2_REF>,bool)
    0x0000022e215fea03 (Mono JIT Code) UnityEditor.Build.BuildPipelineInterfaces:OnBuildPreProcess (UnityEditor.Build.Reporting.BuildReport)
    0x0000022e1e76b950 (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_object (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa813e6b (Unity) Scripting::UnityEditor::Build::BuildPipelineInterfacesProxy::OnBuildPreProcess
    0x00007ff7aebd4cdc (Unity) BuildPlayer
    0x00007ff7ae0ab7ff (Unity) BuildPipeline::BuildPlayerInternalNoCheck
    0x00007ff7ae0044fa (Unity) BuildPipeline_CUSTOM_BuildPlayerInternalNoCheck
    0x0000022e215f0d6a (Mono JIT Code) (wrapper managed-to-native) UnityEditor.BuildPipeline:BuildPlayerInternalNoCheck (string[],string,string,UnityEditor.BuildTargetGroup,UnityEditor.BuildTarget,UnityEditor.BuildOptions,string[],bool)
    0x0000022e215f056b (Mono JIT Code) UnityEditor.BuildPlayerWindow/DefaultBuildMethods:BuildPlayer (UnityEditor.BuildPlayerOptions)
    0x0000022e20facc0b (Mono JIT Code) UnityEditor.BuildPlayerWindow:CallBuildMethods (bool,UnityEditor.BuildOptions)
    0x0000022e20fa90f3 (Mono JIT Code) UnityEditor.BuildPlayerWindow:GUIBuildButtons (UnityEditor.Modules.IBuildWindowExtension,bool,bool,bool,UnityEditor.Build.BuildPlatform)
    0x0000022e20f9d993 (Mono JIT Code) UnityEditor.BuildPlayerWindow:ShowBuildTargetSettings ()
    0x0000022e20f96493 (Mono JIT Code) UnityEditor.BuildPlayerWindow:OnGUI ()
    0x0000022d74f484f3 (Mono JIT Code) UnityEditor.HostView:InvokeOnGUI (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f482a3 (Mono JIT Code) UnityEditor.DockArea:DrawView (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f3bf73 (Mono JIT Code) UnityEditor.DockArea:OldOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Start importing Assets/AddressableAssetsData/AssetGroups/Default Local Group.asset using Guid(ebff09b1d9a9aa54787bbc119250a48e) Importer(-1,00000000000000000000000000000000) -> (artifact id: '9e5ccb83d5438794099a2971c1bb2fc4') in 0.007751 seconds
    Start importing ProjectSettings/EditorBuildSettings.asset using Guid(0000000000000000b000000000000000) Importer(-1,00000000000000000000000000000000) -> (artifact id: '17f99372b45f7a68f12fccd727c66fe2') in 0.011569 seconds
    Refreshing native plugins compatible for Editor in 2.19 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 199.502ms
    Android PostProcess task "Checking prerequisites" took 1,0276 ms
    Android PostProcess task "Detect Java Development Kit (JDK)" took 0,574 ms
    AndroidSDKTools:

    root : C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\PlaybackEngines\AndroidPlayer\SDK
    tools : C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\PlaybackEngines\AndroidPlayer\SDK\tools
    platform-tools: C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\PlaybackEngines\AndroidPlayer\SDK\platform-tools
    build-tools : C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\PlaybackEngines\AndroidPlayer\SDK\build-tools\28.0.3

    adb : C:\Program Files\Unity\Hub\Editor\2020.2.1f1\Editor\Data\PlaybackEngines\AndroidPlayer\SDK\platform-tools\adb.exe

    Android PostProcess task "Detecting Android SDK" took 6,7251 ms
    Android PostProcess task "Detect Android NDK" took 0,4617 ms
    Android PostProcess task "Trying to find a suitable Android device" took 0,0058 ms
    BuildPlayerGenerator: Succeeded
    [ScriptCompilation] Recompiling all scripts because: Recompiling scripts for player build.
    BuildPlayer: start building target 13
    - Starting script compilation
    - Starting compile Library/PlayerScriptAssemblies/UnityEngine.TestRunner.dll
    - Starting compile Library/PlayerScriptAssemblies/UnityEngine.UI.dll
    - Finished compile Library/PlayerScriptAssemblies/UnityEngine.UI.dll in 11,094471 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll
    - Starting compile Library/PlayerScriptAssemblies/Unity.2D.PixelPerfect.dll
    - Starting compile Library/PlayerScriptAssemblies/Unity.Timeline.dll
    - Finished compile Library/PlayerScriptAssemblies/UnityEngine.TestRunner.dll in 11,279661 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.TextMeshPro.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll in 1,137963 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.ResourceManager.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.2D.PixelPerfect.dll in 1,983601 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.Mathematics.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.Timeline.dll in 2,43892 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.2D.IK.Runtime.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.TextMeshPro.dll in 5,013204 seconds
    - Finished compile Library/PlayerScriptAssemblies/Unity.2D.IK.Runtime.dll in 2,652813 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll
    - Starting compile Library/PlayerScriptAssemblies/GoogleMobileAds.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.ResourceManager.dll in 4,371591 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.Addressables.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.Addressables.dll in 5,998244 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.Localization.dll
    - Finished compile Library/PlayerScriptAssemblies/GoogleMobileAds.dll in 6,553605 seconds
    - Finished compile Library/PlayerScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll in 6,652238 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.2D.Common.Runtime.dll
    - Starting compile Library/PlayerScriptAssemblies/Unity.ScriptableBuildPipeline.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.Mathematics.dll in 12,374861 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.Notifications.Android.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.2D.Common.Runtime.dll in 3,167514 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.2D.Animation.Runtime.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.ScriptableBuildPipeline.dll in 3,804005 seconds
    - Starting compile Library/PlayerScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll
    - Finished compile Library/PlayerScriptAssemblies/Unity.Localization.dll in 5,295927 seconds
    - Finished compile Library/PlayerScriptAssemblies/Unity.Notifications.Android.dll in 3,598795 seconds
    - Finished compile Library/PlayerScriptAssemblies/Unity.2D.Animation.Runtime.dll in 2,9563 seconds
    - Finished compile Library/PlayerScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll in 2,482179 seconds
    - Starting compile Library/PlayerScriptAssemblies/Assembly-CSharp.dll
    - Finished compile Library/PlayerScriptAssemblies/Assembly-CSharp.dll in 2,767691 seconds
    - Finished script compilation in 32,701452 seconds
    Assets\AdmobCode\Scr�pts\VG_GoogleAdmob.cs(78,9): warning CS0618: 'MobileAds.Initialize(string)' is obsolete: 'Initialize(string appId) is deprecated, use Initialize(Action<InitializationStatus> initCompleteAction) instead.'

    Assets\GoogleMobileAds\Platforms\Unity\BannerClient.cs(39,53): warning CS0067: The event 'BannerClient.OnPaidEvent' is never used

    Assets\GoogleMobileAds\Api\RewardedInterstitialAd.cs(58,53): warning CS0067: The event 'RewardedInterstitialAd.OnPaidEvent' is never used

    Assets\GoogleMobileAds\Platforms\Unity\RewardedAdClient.cs(33,57): warning CS0067: The event 'RewardedAdClient.OnAdFailedToLoad' is never used

    Assets\GoogleMobileAds\Platforms\Unity\RewardingAdBaseClient.cs(34,53): warning CS0067: The event 'RewardingAdBaseClient.OnPaidEvent' is never used

    Assets\GoogleMobileAds\Platforms\Unity\InterstitialClient.cs(38,53): warning CS0067: The event 'InterstitialClient.OnPaidEvent' is never used

    Assets\GoogleMobileAds\Platforms\Unity\BannerClient.cs(35,46): warning CS0067: The event 'BannerClient.OnAdClosed' is never used

    BuildPlayerGenerator: Succeeded
    Start importing Assets/StreamingAssets using Guid(f46f8be97be13d148ba88518919b877b) Importer(-1,00000000000000000000000000000000) -> (artifact id: '28de880e84977033926d61caa9000a47') in 0.008492 seconds
    Start importing Assets/StreamingAssets/aa using Guid(e939dddde8f91564fa9d57d864c2a60e) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'ac53339c2031df946757fc3515e5a419') in 0.008119 seconds
    Start importing Assets/StreamingAssets/aa/Android using Guid(06fb3a213d7a4c3449666a7c593026e8) Importer(-1,00000000000000000000000000000000) -> (artifact id: '792ace859e60cf9423768bfae451d781') in 0.008924 seconds
    Start importing Assets/StreamingAssets/aa/Android/localization-assets-shared_assets_all.bundle using Guid(c0f4630042da6da469b9df2672940bf7) Importer(-1,00000000000000000000000000000000) -> (artifact id: '31111e7232ce9a962a4b68fef05ab797') in 0.015826 seconds
    Start importing Assets/StreamingAssets/aa/Android/defaultlocalgroup_assets_all_1066a4a3c3f6f887b921dbeb5772d69b.bundle using Guid(f433d41f5a0a57542a603f291c1694e9) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'd8cf974e1534429b1333150591392b03') in 0.008821 seconds
    Start importing Assets/StreamingAssets/aa/Android/localization-stringtables_assets_all.bundle using Guid(ca75cb3c5dc50204db490b039389ae52) Importer(-1,00000000000000000000000000000000) -> (artifact id: '0ed7dfa6bc4e0961338617a9826a78f5') in 0.006420 seconds
    Refreshing native plugins compatible for Editor in 1.68 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    Refresh completed in 0.650964 seconds.
    RefreshInfo: RefreshV2() scanfilter:
    RefreshProfiler: Total: 650.905ms
    InvokeBeforeRefreshCallbacks: 0.001ms
    ApplyChangesToAssetFolders: 0.197ms
    Scan: 91.760ms
    OnSourceAssetsModified: 0.150ms
    InitializeImportedAssetsSnapshot: 15.873ms
    GetAllGuidsForCategorization: 0.448ms
    CategorizeAssets: 156.978ms
    ImportAndPostprocessOutOfDateAssets: 362.091ms (9.166ms without children)
    ImportManagerImport: 283.837ms (5.488ms without children)
    ImportInProcess: 278.223ms
    UpdateCategorizedAssets: 0.126ms
    PostProcessAllAssets: 44.688ms
    ReloadImportedAssets: 0.005ms
    EnsureUptoDateAssetsAreRegisteredWithGuidPM: 1.284ms
    InitializingProgressBar: 0.824ms
    PostProcessAllAssetNotificationsAddChangedAssets: 0.470ms
    OnDemandSchedulerStart: 0.554ms
    RestoreLoadedAssetsState: 7.280ms
    UpdateImportedAssetsSnapshot: 13.981ms
    ReloadSourceAssets: 3.621ms
    UnloadImportedAssets: 0.876ms
    Hotreload: 8.352ms
    FixTempGuids: 0.005ms
    GatherAllCurrentPrimaryArtifactRevisions: 0.406ms
    UnloadStreamsBegin: 0.313ms
    LoadedImportedAssetsSnapshotReleaseGCHandles: 2.873ms
    GetLoadedSourceAssetsSnapshot: 14.057ms
    PersistCurrentRevisions: 0.438ms
    UnloadStreamsEnd: 0.126ms
    Untracked: -7.660ms
    Warning! Using antialiasing on a mobile device may decrease performance severely. You can change the mobile quality settings in 'Project Settings -> Quality Settings'.

    Warning! Using more than 1 pixel lights on a mobile device may decrease performance severely. You can change the mobile quality settings in 'Project Settings -> Quality Settings'.

    SpriteAtlasPacking completed in 2.848816 sec
    Opening scene 'Assets/Scenes/menu.unity'
    Unloading 2 Unused Serialized files (Serialized files now loaded: 0)
    Loaded scene 'Assets/Scenes/menu.unity'
    Deserialize: 135.072 ms
    Integration: 51.869 ms
    Integration of assets: 0.117 ms
    Thread Wait Time: 10.803 ms
    Total Operation Time: 197.861 ms
    System memory in use before: 148.4 MB.
    System memory in use after: 147.9 MB.

    Unloading 181 unused Assets to reduce memory usage. Loaded Objects now: 4393.
    Total: 44.398700 ms (FindLiveObjects: 0.716200 ms CreateObjectMapping: 0.278100 ms MarkObjects: 42.784200 ms DeleteObjects: 0.617400 ms)

    Opening scene 'Temp/__Backupscenes/0.backup'
    Unloading 47 Unused Serialized files (Serialized files now loaded: 0)
    Loaded scene 'Temp/__Backupscenes/0.backup'
    Deserialize: 9.205 ms
    Integration: 32.131 ms
    Integration of assets: 1.114 ms
    Thread Wait Time: 9.652 ms
    Total Operation Time: 52.101 ms
    System memory in use before: 156.0 MB.
    System memory in use after: 154.7 MB.

    Unloading 68 unused Assets to reduce memory usage. Loaded Objects now: 4485.
    Total: 29.369000 ms (FindLiveObjects: 0.843800 ms CreateObjectMapping: 0.449700 ms MarkObjects: 27.819500 ms DeleteObjects: 0.253500 ms)

    Opening scene 'Assets/Scenes/tekKisilik.unity'
    Unloading 9 Unused Serialized files (Serialized files now loaded: 0)
    Loaded scene 'Assets/Scenes/tekKisilik.unity'
    Deserialize: 113.358 ms
    Integration: 33.469 ms
    Integration of assets: 0.305 ms
    Thread Wait Time: 11.835 ms
    Total Operation Time: 158.966 ms
    System memory in use before: 153.4 MB.
    System memory in use after: 153.7 MB.

    Unloading 6 unused Assets to reduce memory usage. Loaded Objects now: 4641.
    Total: 32.713500 ms (FindLiveObjects: 0.934400 ms CreateObjectMapping: 0.350900 ms MarkObjects: 31.334900 ms DeleteObjects: 0.090400 ms)

    Opening scene 'Assets/Scenes/ciftKisilik.unity'
    Unloading 4 Unused Serialized files (Serialized files now loaded: 0)
    Loaded scene 'Assets/Scenes/ciftKisilik.unity'
    Deserialize: 201.592 ms
    Integration: 32.507 ms
    Integration of assets: 0.064 ms
    Thread Wait Time: 10.387 ms
    Total Operation Time: 244.550 ms
    System memory in use before: 153.4 MB.
    System memory in use after: 153.7 MB.

    Unloading 0 unused Assets to reduce memory usage. Loaded Objects now: 4867.
    Total: 37.789000 ms (FindLiveObjects: 0.681100 ms CreateObjectMapping: 0.258600 ms MarkObjects: 36.828000 ms DeleteObjects: 0.019000 ms)



    Mono dependencies included in the build
    Dependency assembly - System.Runtime.Serialization.Xml.dll
    Dependency assembly - Unity.2D.Animation.Runtime.dll
    Dependency assembly - System.Xml.dll
    Dependency assembly - mscorlib.dll
    Dependency assembly - System.IO.Compression.dll
    Dependency assembly - GoogleMobileAds.dll
    Dependency assembly - System.Net.Http.dll
    Dependency assembly - System.ServiceModel.Internals.dll
    Dependency assembly - System.Xml.XPath.XDocument.dll
    Dependency assembly - Unity.ScriptableBuildPipeline.dll
    Dependency assembly - netstandard.dll
    Dependency assembly - Unity.Timeline.dll
    Dependency assembly - System.Core.dll
    Dependency assembly - Assembly-CSharp.dll
    Dependency assembly - UnityEngine.UI.dll
    Dependency assembly - System.EnterpriseServices.dll
    Dependency assembly - Unity.ResourceManager.dll
    Dependency assembly - System.Xml.Linq.dll
    Dependency assembly - Mono.Security.dll
    Dependency assembly - System.Configuration.dll
    Dependency assembly - System.Numerics.dll
    Dependency assembly - System.Runtime.Serialization.dll
    Dependency assembly - Unity.2D.Animation.Triangle.Runtime.dll
    Dependency assembly - Unity.Addressables.dll
    Dependency assembly - Unity.InternalAPIEngineBridge.001.dll
    Dependency assembly - Unity.2D.Common.Runtime.dll
    Dependency assembly - Unity.2D.PixelPerfect.dll
    Dependency assembly - System.Transactions.dll
    Dependency assembly - Unity.Localization.dll
    Dependency assembly - System.Globalization.Extensions.dll
    Dependency assembly - Unity.2D.SpriteShape.Runtime.dll
    Dependency assembly - System.ComponentModel.Composition.dll
    Dependency assembly - System.Drawing.dll
    Dependency assembly - System.IO.Compression.FileSystem.dll
    Dependency assembly - System.Data.dll
    Dependency assembly - Newtonsoft.Json.dll
    Dependency assembly - Unity.Notifications.Android.dll
    Dependency assembly - Unity.TextMeshPro.dll
    Dependency assembly - System.Diagnostics.StackTrace.dll
    Dependency assembly - System.dll
    Dependency assembly - Unity.2D.IK.Runtime.dll
    Dependency assembly - Unity.Mathematics.dll

    Unloading 105 Unused Serialized files (Serialized files now loaded: 0)
    System memory in use before: 156.3 MB.
    System memory in use after: 156.4 MB.

    Unloading 137 unused Assets to reduce memory usage. Loaded Objects now: 4293.
    Total: 29.829600 ms (FindLiveObjects: 0.932000 ms CreateObjectMapping: 0.588500 ms MarkObjects: 28.037900 ms DeleteObjects: 0.268700 ms)

    [EnlightenBakeManager] m_Clear = false;
    Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
    System memory in use before: 152.7 MB.
    System memory in use after: 153.0 MB.

    Unloading 1 unused Assets to reduce memory usage. Loaded Objects now: 4301.
    Total: 26.925500 ms (FindLiveObjects: 0.598100 ms CreateObjectMapping: 0.317200 ms MarkObjects: 25.943500 ms DeleteObjects: 0.057600 ms)

    Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
    System memory in use before: 289.4 MB.
    System memory in use after: 153.3 MB.

    Unloading 154 unused Assets to reduce memory usage. Loaded Objects now: 4292.
    Total: 94.405400 ms (FindLiveObjects: 1.277200 ms CreateObjectMapping: 0.558700 ms MarkObjects: 45.499800 ms DeleteObjects: 47.067400 ms)

    Compiled shader 'TextMeshPro/Distance Field' in 1.39s
    gles3 (total internal programs: 20, unique: 20)
    vulkan (total internal programs: 20, unique: 20)
    Compiled shader 'TextMeshPro/Distance Field (Surface)' in 1.13s
    gles3 (total internal programs: 18, unique: 18)
    vulkan (total internal programs: 18, unique: 18)

    ***Player size statistics***
    Level 0 'Assets/Scenes/menu.unity' uses 1.1 MB compressed / 2.5 MB uncompressed.
    Level 1 'Assets/Scenes/ayarlar.unity' uses 111.0 KB compressed / 2.3 MB uncompressed.
    Level 2 'Assets/Scenes/tekKisilik.unity' uses 19.5 KB compressed / 384.0 KB uncompressed.
    Level 3 'Assets/Scenes/ciftKisilik.unity' uses 1.1 MB compressed / 2.4 MB uncompressed.
    Total compressed size 2.3 MB. Total uncompressed size 7.5 MB.
    Android PostProcess task "Creating staging area" took 2,3587 ms
    Android PostProcess task "Generating Build Id" took 0,0196 ms
    Android PostProcess task "Preparing Unity resources" took 257,9986 ms
    Android PostProcess task "Managed Stripping: (Mono)" took 4,2208 ms
    Android PostProcess task "Preparing Managed resources" took 3048,869 ms
    Android PostProcess task "Splitting assets" took 11,1483 ms
    Android PostProcess task "Processing OBB assets" took 0,0038 ms
    Android PostProcess task "Preparing Unity libraries" took 1388,5481 ms
    Android PostProcess task "Processing resources" took 0,1633 ms
    Android PostProcess task "Preparing APK resources" took 8,6993 ms
    Android PostProcess task "Processing plugins" took 6032,126 ms
    Android PostProcess task "Processing Android libraries" took 5,7479 ms
    Android PostProcess task "Checking Graphics API compatibility" took 0,0412 ms
    Android PostProcess task "Creating Android manifest" took 478,7056 ms
    Android PostProcess task "Compiling resources" took 2,8203 ms
    Android PostProcess task "GenerateIl2cppPlatformProviders" took 0,3768 ms
    Android PostProcess task "IL2CPP" took 0,002 ms
    Android PostProcess task "Build native Unity binary" took 0,0027 ms
    Android PostProcess task "Zipping symbols" took 0,0031 ms
    Android PostProcess task "Performance Reporting Symbol Upload" took 0,002 ms
    Android PostProcess task "Preparing streaming assets" took 41,1405 ms
    Android PostProcess task "Creating APK expansion package (OBB)" took 0,0036 ms
    Android PostProcess task "Exporting project" took 8669,5816 ms
    Android PostProcess task "Building Gradle project" took 38204,7367 ms
    Android PostProcess task "Processing Mapping File" took 0,1458 ms
    Android PostProcess task "Moving output package(s)" took 10,3481 ms
    Deleting Addressables data from C:/Users/Dell/Desktop/atii/unity/NumberEstimateV3/Assets/StreamingAssets/aa.
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21634d88 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022d74ddeaf3 (Mono JIT Code) [AddressablesPlayerBuildProcessor.cs:33] AddressablesPlayerBuildProcessor:CleanTemporaryPlayerBuildData ()
    0x0000022e21562a2b (Mono JIT Code) [AddressablesPlayerBuildProcessor.cs:25] AddressablesPlayerBuildProcessor:OnPostprocessBuild (UnityEditor.Build.Reporting.BuildReport)
    0x0000022e215604ad (Mono JIT Code) UnityEditor.Build.BuildPipelineInterfaces/<>c__DisplayClass17_0:<OnBuildPostProcess>b__1 (UnityEditor.Build.IPostprocessBuildWithReport)
    0x0000022d74f9f919 (Mono JIT Code) UnityEditor.Build.BuildPipelineInterfaces:InvokeCallbackInterfacesPair<T1_REF, T2_REF> (System.Collections.Generic.List`1<T1_REF>,System.Action`1<T1_REF>,System.Collections.Generic.List`1<T2_REF>,System.Action`1<T2_REF>,bool)
    0x0000022e215602c3 (Mono JIT Code) UnityEditor.Build.BuildPipelineInterfaces:OnBuildPostProcess (UnityEditor.Build.Reporting.BuildReport)
    0x0000022e1e76b950 (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_object (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa8139db (Unity) Scripting::UnityEditor::Build::BuildPipelineInterfacesProxy::OnBuildPostProcess
    0x00007ff7aebe671d (Unity) PostprocessPlayer
    0x00007ff7aebe221d (Unity) DoBuildPlayer_PostBuild
    0x00007ff7aebe0b10 (Unity) DoBuildPlayer
    0x00007ff7aebd5bcc (Unity) BuildPlayer
    0x00007ff7ae0ab7ff (Unity) BuildPipeline::BuildPlayerInternalNoCheck
    0x00007ff7ae0044fa (Unity) BuildPipeline_CUSTOM_BuildPlayerInternalNoCheck
    0x0000022e215f0d6a (Mono JIT Code) (wrapper managed-to-native) UnityEditor.BuildPipeline:BuildPlayerInternalNoCheck (string[],string,string,UnityEditor.BuildTargetGroup,UnityEditor.BuildTarget,UnityEditor.BuildOptions,string[],bool)
    0x0000022e215f056b (Mono JIT Code) UnityEditor.BuildPlayerWindow/DefaultBuildMethods:BuildPlayer (UnityEditor.BuildPlayerOptions)
    0x0000022e20facc0b (Mono JIT Code) UnityEditor.BuildPlayerWindow:CallBuildMethods (bool,UnityEditor.BuildOptions)
    0x0000022e20fa90f3 (Mono JIT Code) UnityEditor.BuildPlayerWindow:GUIBuildButtons (UnityEditor.Modules.IBuildWindowExtension,bool,bool,bool,UnityEditor.Build.BuildPlatform)
    0x0000022e20f9d993 (Mono JIT Code) UnityEditor.BuildPlayerWindow:ShowBuildTargetSettings ()
    0x0000022e20f96493 (Mono JIT Code) UnityEditor.BuildPlayerWindow:OnGUI ()
    0x0000022d74f484f3 (Mono JIT Code) UnityEditor.HostView:InvokeOnGUI (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f482a3 (Mono JIT Code) UnityEditor.DockArea:DrawView (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f3bf73 (Mono JIT Code) UnityEditor.DockArea:OldOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Refreshing native plugins compatible for Editor in 3.06 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 238.909ms
    Refreshing native plugins compatible for Editor in 2.79 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 132.277ms
    Refreshing native plugins compatible for Editor in 3.78 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.

    -------------------------------------------------------------------------------
    Build Report
    Uncompressed usage by category (Percentages based on user generated assets only):
    Textures 5.3 mb 23.0%
    Meshes 0.0 kb 0.0%
    Animations 0.0 kb 0.0%
    Sounds 3.8 kb 0.0%
    Shaders 328.0 kb 1.4%
    Other Assets 805.6 kb 3.4%
    Levels 180.6 kb 0.8%
    Scripts 3.0 mb 12.9%
    Included DLLs 13.4 mb 58.3%
    File headers 47.1 kb 0.2%
    Total User Assets 23.0 mb 100.0%
    Complete build size 106.6 mb
    Used Assets and files from the Resources folder, sorted by uncompressed size:
    2.0 mb 1.9% Assets/Sprites/turkFlag.png
    1.0 mb 1.0% Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset
    368.9 kb 0.3% Assets/Sprites/tik.png
    344.5 kb 0.3% Assets/TextMesh Pro/Fonts/LiberationSans.ttf
    341.5 kb 0.3% Assets/TextMesh Pro/Examples & Extras/Sprites/DropCap Numbers.psd
    341.5 kb 0.3% Assets/TextMesh Pro/Examples & Extras/Sprites/Default Sprites.png
    341.5 kb 0.3% Assets/TextMesh Pro/Sprites/EmojiOne.png
    259.5 kb 0.2% Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset
    170.8 kb 0.2% Assets/TextMesh Pro/Examples & Extras/Textures/Fruit Jelly (B&W).jpg
    170.8 kb 0.2% Assets/TextMesh Pro/Examples & Extras/Textures/Floor Cement.jpg
    167.1 kb 0.2% Assets/TextMesh Pro/Examples & Extras/Fonts/Roboto-Bold.ttf
    148.6 kb 0.1% Assets/Sprites/englandFlag 1.png
    106.9 kb 0.1% Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader
    106.4 kb 0.1% Assets/TextMesh Pro/Shaders/TMP_SDF.shader
    85.5 kb 0.1% Assets/TextMesh Pro/Examples & Extras/Textures/Brushed Metal 3.jpg
    71.7 kb 0.1% Assets/TextMesh Pro/Examples & Extras/Fonts/Electronic Highway Sign.TTF
    68.5 kb 0.1% Resources/unity_builtin_extra
    64.2 kb 0.1% Assets/TextMesh Pro/Examples & Extras/Textures/Sunny Days - Seamless.jpg
    52.2 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Fonts/Oswald-Bold.ttf
    41.8 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Fonts/Anton.ttf
    40.5 kb 0.0% Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader
    39.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Fonts/Bangers.ttf
    28.6 kb 0.0% Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader
    19.3 kb 0.0% Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader
    17.2 kb 0.0% Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader
    9.1 kb 0.0% Assets/TextMesh Pro/Shaders/TMP_Sprite.shader
    5.8 kb 0.0% Assets/Sprites/dikdortgenButon2.png
    4.2 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Circle.psd
    3.8 kb 0.0% Assets/keyboard.mp3
    3.2 kb 0.0% Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset
    2.9 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Oswald Bold SDF.asset
    2.9 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF.asset
    2.8 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Electronic Highway Sign SDF.asset
    2.7 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF.asset
    2.7 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF.asset
    2.7 kb 0.0% Assets/Localization/Localization Settings.asset
    2.2 kb 0.0% Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset
    1.9 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/Default Sprite Asset.asset
    1.8 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF Glow.mat
    1.8 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Metalic Green.mat
    1.8 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/DropCap Numbers.asset
    1.7 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF - Surface.mat
    1.7 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Sunny Days.mat
    1.7 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Soft Mask.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF Logo.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF - Drop Shadow.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF - Outline.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF - Drop Shadow.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Drop Shadow.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat
    1.6 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Outline.mat
    1.2 kb 0.0% Assets/Sprites/buttonImage.png
    1.0 kb 0.0% Assets/Sprites/soundOff.png
    1.0 kb 0.0% Assets/Sprites/soundOn.png
    0.9 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Overlay.mat
    0.7 kb 0.0% Assets/AdmobCode/ADS.prefab
    0.3 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Diagonal (Color).jpg
    0.3 kb 0.0% Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt
    0.3 kb 0.0% Assets/TextMesh Pro/Resources/TMP Settings.asset
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AddressableAssetSettingsResourceLocationTests.cs
    0.2 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidReceivedNotificationMainThreadDispatcher.cs
    0.2 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Settings/LocalizationSettingsLocaleChangedTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/Simulation/VirtualAssetBundleRuntimeData.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs
    0.2 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Localized Reference/ChangingLocalizedAssetEventUpdatesValues.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/DiagnosticEventCollectorIntegrationTests.cs
    0.2 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/RectMask2DWithNestedCanvasCullsUsingCorrectCanvasRect.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/Simulation/VirtualBundledAssetProvider.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/Simulation/VirtualAssetBundleProvider.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs
    0.2 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Localized Reference/ChangingLocalizedStringUpdatesValues.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceProviders/ContentCatalogProviderTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/DynamicContentUpdateTests.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs
    0.2 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Settings/PlayerPrefLocaleSelectorTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/VirtualAssetBundleProviderTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerVirtualModeTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerPackedModeTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/AddressablesRuntimeProperties.cs
    0.2 kb 0.0% Packages/com.unity.timeline/Runtime/AssetUpgrade/AnimationPlayableAssetUpgrade.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs
    0.2 kb 0.0% Packages/com.unity.scriptablebuildpipeline/Runtime/CompatibilityAssetBundleManifest.cs
    0.2 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/PluralLocalizationFormatter.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ManualPercentCompleteOperation.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/Simulation/VirtualAssetBundle.cs
    0.2 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/DefaultVoronoiFactory.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs
    0.2 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidNotificationIntentData.cs
    0.2 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidNotificationExtensions.cs
    0.2 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Helpers/LocalizationSettingsHelper.cs
    0.2 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/ParsingErrorEventArgs.cs
    0.2 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/SharedTableCollectionMetadata.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerFastModeTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/Operations/BaseOperationBehaviorTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/Operations/AsyncOperationHandleTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/LegacyResourcesProvider.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/AssetDatabaseProvider.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/ResourceManagerRuntimeData.cs
    0.2 kb 0.0% Assets/Samples/Localization/0.9.0-preview/Language Selection Menu (UGUI)/LanguageSelectionMenuUGUIToggleList.cs
    0.2 kb 0.0% Assets/Samples/Localization/0.9.0-preview/Language Selection Menu (UGUI)/LanguageSelectionMenuUGUIDropdown.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs
    0.2 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/AllocatingGCMemoryConstraint.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AddressablesIntegrationTests.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceProviders/ContentCatalogProvider.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Diagnostics/DiagnosticEventCollector.cs
    0.2 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceLocators/LegacyResourcesLocator.cs
    0.2 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/Legacy/BoundedVoronoiLegacy.cs
    0.2 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/IntersectionHelper.cs
    0.2 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/ConstraintOptions.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/TestCommandBuilder.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRepeatedTestCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestMustExpectAllLogsAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidNotificationCenter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Formatting/FormattingException.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Startup Selectors/CommandLineLocaleSelector.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/PreloadAssetTableMetadata.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerBaseTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/Operations/ProviderOperationTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/ResourceProviderBase.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/BundledAssetProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/AtlasSpriteProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/AssetBundleProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceLocations/ResourceLocationBase.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/InitializationOperation.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/RewardedInterstitialAdDummyClient.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CanvasScalerWithChildTextObjectDoesNotCrash.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RuntimeTestRunnerFilter.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/PlayerQuitHandler.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/XElementFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/TemplateFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/SubStringFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/ConditionalFormatter.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/Initialization/AddrRuntimePropertiesTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AssetReferenceDrawerTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Utility/SerializationUtilities.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/ResourceManagerConfig.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceLocators/ResourceLocationMap.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceLocators/ResourceLocationData.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceLocators/ContentCatalogData.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/StandardVoronoi.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/Legacy/VoronoiRegion.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/Legacy/SimpleVoronoi.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/BoundedVoronoi.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/TriangleSampler.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/TriangleLocator.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/TriangleQuadTree.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/QualityMeasure.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/PolygonValidator.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/Interpolation.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/AdjacencyMatrix.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Smoothing/VoronoiFactory.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Smoothing/SimpleSmoother.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/RobustPredicates.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/QualityOptions.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/QualityMesher.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Iterators/RegionIterator.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/GenericMesher.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/ConstraintMesher.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/MeshValidator.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/TriangleWriter.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/TriangleReader.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/TriangleFormat.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/InputTriangle.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/FileProcessor.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/RegionPointer.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/ExtensionMethods.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Configuration.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteLib/SpriteLibraryAsset.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRetryTestCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/ConditionalIgnoreAttribute.cs
    0.1 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Locale/LocaleSystemLanguage.cs
    0.1 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Helpers/TestLocaleProvider.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/FormattingErrorEventArgs.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Settings/SmartSettings.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/ParsingErrors.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Formatting/FormattingInfo.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Formatting/FormatDetails.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Extensions/FormatterBase.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Startup Selectors/SpecificLocaleSelector.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Startup Selectors/PlayerPrefLocaleSelector.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Database/LocalizedStringDatabase.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Database/LocalizedAssetDatabase.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/SharedTableEntryMetadata.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Component Localizers/LocalizeAudioClipEvent.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/TextDataProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/SceneProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/InstanceProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/GroupOperation.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/CacheInitialization.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/PrepareSkinningSystem.cs
    0.1 kb 0.0% Assets/Samples/Localization/0.9.0-preview/Language Selection Menu (IMGUI)/LanguageSelectionMenuIMGUI.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/InitializationStatusDummyClient.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/NestedLayout/SceneWithNestedLayoutElementsLoadScript.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/GraphicRaycasterWorldSpaceCanvasTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/NoActiveCameraInSceneDoesNotCrashEditor.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CanvasSizeCorrectInAwakeAndStartScript.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/AssetUpgrade/AnimationTrackUpgrade.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Animation/AnimationPreviewUpdateCallback.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Animation/AnimationOutputWeightProcessor.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/TestRunCallbackListener.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/SynchronousFilter.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/Keys/SequentialIDGenerator.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/Keys/DistributedUIDGenerator.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Utilities/TimeSpanUtility.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Utilities/FormatDelegate.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/TimeFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/ReflectionSource.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/ListFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/IsMatchFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/DictionarySource.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/DefaultSource.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/DefaultFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/ChooseFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Output/TextWriterOutput.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Services/PlatformMappingService.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/DelayedActionManager.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/UpdateCatalogsOperation.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/CheckCatalogsOperation.cs
    0.1 kb 0.0% Packages/com.unity.2d.common/Runtime/InternalBridge/InternalEngineBridge.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/VoronoiBase.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/TrianglePool.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/SubSegment.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/VertexSorter.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/Statistic.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Tools/CuthillMcKee.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/NewLocation.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Iterators/EdgeIterator.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Data/BadTriangle.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Data/BadTriQueue.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Data/BadSubseg.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Converter.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Algorithm/SweepLine.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Algorithm/Incremental.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/DebugWriter.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Rectangle.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteLib/SpriteResolver.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteLib/SpriteLibrary.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/ServerSideVerificationOptions.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/HorizontalOrVerticalLayoutGroup.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/TestRunCallbackAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/iOS/iOSNotificationsWrapper.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/iOS/iOSNotificationCenter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Tests/Runtime/Locale/LocaleSorting.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Utilities/SystemTime.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/Placeholder.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/LiteralText.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/FormatItem.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Formatting/FormatCache.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Startup Selectors/SystemLocaleSelector.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/LocalizationSettings.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/MetadataCollection.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/AssetTypeMetadata.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Component Localizers/LocalizeTextureEvent.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Component Localizers/LocalizeStringEvent.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Component Localizers/LocalizeSpriteEvent.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Attributes/MetadataAttribute.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/RuntimePlatformMappingServiceTests.cs
    0.1 kb 0.0% Packages/com.unity.2d.pixel-perfect/Runtime/PixelPerfectCameraInternal.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/UpdateBoundsSystem.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/TransformAccessJob.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteSkinUtility.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteSkinManager.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteSkinComposite.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/DeformSpriteSystem.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt
    0.1 kb 0.0% Assets/Samples/Localization/0.9.0-preview/Language Selection Menu (IMGUI)/SimpleLocalesProvider.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/RewardedInterstitialAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/RewardedInterstitialAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/RequestConfigurationClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/InitializationStatusClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/CustomNativeTemplateClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettings.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/CustomNativeClientEventArgs.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/NestedLayout/SceneWithNestedLayoutElementsLoads.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CoroutineWorksIfUIObjectIsAttached.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/AnimationPreviewUtilities.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/TimeNotificationBehaviour.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/ActivationControlPlayable.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/SystemLanguageConverter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/LocalizationTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Utilities/PluralRules.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/XmlSource.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Output/StringOutput.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/TypicalCharacterSets.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Methods/CharacterSubstitutor.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Operations/InitializationOperation.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerLegacyModeTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/AssetLabelReference.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/SpriteShapeController.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/MeshUtils.cs
    0.1 kb 0.0% Packages/com.unity.2d.pixel-perfect/Tests/Runtime/PixelPerfectCameraTests.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/Triangle.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/DCEL/Vertex.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/DCEL/HalfEdge.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/DCEL/DcelMesh.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/Algorithm/Dwyer.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Logging/LogItem.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Vertex.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Segment.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Polygon.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Point.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Contour.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Behavior.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Light to Dark Green - Vertical.asset
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Dark to Light Green - Vertical.asset
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/RewardedInterstitialAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/RequestConfigurationClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/InitializationStatusClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/CustomNativeTemplateClient.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Util/UIBehaviourExtensions.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/InputModules/StandaloneInputModule.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestState.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/iOS/AuthorizationRequest.cs
    0.1 kb 0.0% Packages/com.unity.mobile.android-logcat/Tests/Runtime/AndroidLogcatDummyTests.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/SmartFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/SmartExtensions.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/Selector.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/Parser.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Parsing/Format.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/LocalesProvider.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/SmartFormatTag.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/FallbackLocale.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/TestUtil/MockProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/InitializationObjectsAsyncTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AddressablesIntegrationTestsImpl.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/WebRequestQueue.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceManager.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/AssetReferenceUIRestriction.cs
    0.1 kb 0.0% Packages/com.unity.2d.pixel-perfect/Runtime/CinemachinePixelPerfect.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteSkinEntity.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/Solver2DMenuAttribute.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/IKEditorManagerHelper.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Yellow to Orange - Vertical.asset
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Blue to Purple - Vertical.asset
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/GoogleMobileAdsClientFactory.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/RewardingAdBaseClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/ResponseInfoDummyClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/GoogleMobileAdsClientFactory.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/RewardBasedVideoAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/RewardedAdDummyClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/MobileAdsEventExecutor.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/InputField/GenericInputFieldTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/InputField/DesktopInputFieldTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/RectTransformValidAfterEnable.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/NestedCanvasMaintainsCorrectSize.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CheckMeshColorsAndColors32Match.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CanvasSizeCorrectInAwakeAndStart.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/BridgeScriptForRetainingObjects.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/TimelineCreateUtilities.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/NotificationUtilities.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/PrefabControlPlayable.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/ParticleControlPlayable.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/DirectorControlPlayable.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/Signals/CustomSignalEventDrawer.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Animation/AnimationPlayableAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Activation/ActivationPlayableAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Activation/ActivationMixerPlayable.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ScrollbarEventHandler.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_PackageResourceImporter.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_EditorResourceManager.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/CoroutineRunner.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Tests/Runtime/Android/AndroidNotificationTests.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidNotificationChannel.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidNotificationCallback.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/StringBuilderPool.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/TableEntryData.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/SharedTableData.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedStringTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedReference.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedAssetTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Attributes/DisplayNameAttribute.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/TestObject2.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/TestObject.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/ResourceManager/ResourceManagerUtilityTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/LegacyResourceTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Utility/ResourceManagerEventCollector.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/InitializationObjectsOperation.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/AssetReference.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/AddressablesImpl.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/DCEL/Face.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Mesh.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Log.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/Edge.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/RewardBasedVideoAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/RewardedInterstitialAd.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/CustomNativeTemplateAd.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/CustomNativeEventArgs.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdFailedToLoadEventArgs.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Util/GraphicTestHelper.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Util/ExceptionUtils.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/MaskClipping/RectMask2DClipping.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Layout/VerticalLayoutGroupTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Layout/ContentSizeFitterTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Utility/ReflectionMethodsCache.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/MultipleDisplayUtilities.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/HorizontalLayoutGroup.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/GraphicRebuildTracker.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Culling/RectangularVertexClipper.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/Raycasters/Physics2DRaycaster.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/InputModules/PointerInputModule.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AttributeHelper.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/IAsyncTestAssemblyBuilder.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/iOS/iOSNotification.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/SmartObjects.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/TestBehaviourWithReference.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/DynamicResourceLocationTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AssetReferenceTestBehavior.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AddressablesTestUtilities.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/MonoBehaviourCallbackHooks.cs
    0.1 kb 0.0% Packages/com.unity.2d.pixel-perfect/Runtime/PixelPerfectCamera.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteSkin.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshProFloatingText.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMPro_InstructionOverlay.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_UiFrameRateCounter.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextInfoDebugTool.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/InterstitialClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/BaseAdDummyClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/ResponseInfoClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/InterstitialClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IRewardedInterstitialAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/AdLoaderClientArgs.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Mediation/MediationExtras.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/TextEditor/TextEditorBackspaceDelete.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Layout/HorizonalLayoutGroupTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/InputField/TouchInputFieldTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/InputModuleTests/PointerClickCallbackCheck.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/SiblingOrderChangesLayout.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CanvasGroupInheritedAlpha.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/AnimatorBindingCache.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/TimeControlPlayable.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Evaluation/ScheduleRuntimeClip.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Evaluation/InfiniteRuntimeClip.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Control/ControlPlayableAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Audio/AudioPlayableAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Audio/AudioMixerProperties.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Audio/AudioClipProperties.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Attributes/TrackColorAttribute.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_ExtensionMethods.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextParsingUtilities.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextElement_Legacy.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteAssetImportFormats.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontAssetUtilities.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/MaterialReferenceManager.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/AddressHelper.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/StringTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/DetailedLocalizationTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/AssetTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/PseudoLocale.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Methods/PreserveTags.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Methods/Encapsulator.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/IPseudoLocalizationMethod.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedString.deprecated.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedString.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedAsset.deprecated.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Addressables.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/SpriteShapeGeometryCache.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/SplineUtility.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/Tess.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/Mesh.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/Geom.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/BezierUtility.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/IConstraintMesher.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/ResponseInfoClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/InterstitialClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/RewardBasedVideoAd.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/InitializationStatus.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/RequestConfiguration.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/MaxAdContentRating.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Util/ConcreteGraphic.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Toggle/TestableToggleGroup.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Layout/LayoutGroupScaling.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/NavigationTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/SelectableTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/SetPropertyUtility.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/VerticalLayoutGroup.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/ContentSizeFitter.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/AspectRatioFitter.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/FontUpdateTracker.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/CanvasUpdateRegistry.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/AnimationTriggers.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/Raycasters/PhysicsRaycaster.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/Raycasters/BaseRaycaster.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/RaycasterManager.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/InputModules/TouchInputModule.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/InputModules/BaseInputModule.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/ExecuteEvents.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventData/PointerEventData.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventData/BaseEventData.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventData/AxisEventData.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/TimelineAsset_CreateRemove.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/INotificationOptionProvider.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogAssert.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Tests/Runtime/iOS/iOSNotificationTests.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/iOS/iOSNotificationTriggers.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/iOS/iOSNotificationSettings.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Smart.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/Comment.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/IgnoreFailingLogMessage.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/BuiltInDataTests.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AddressablesTestFixture.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/AddressablesImplTests.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/FabrikSolver2D.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/VertexColorCycler.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TextConsoleSimulator.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_B.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_A.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventCheck.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_PhoneNumberValidator.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_FrameRateCounter.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_ExampleScript_01.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/ShaderPropAnimator.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/MonoPInvokeCallbackAttribute.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/RewardedAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/RewardedAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/MobileAdsClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/DisplayMetrics.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/AdLoaderClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IRewardBasedVideoAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IInitializationStatusClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/ICustomNativeTemplateClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/TagForChildDirectedTreatment.cs
    0.1 kb 0.0% Assets/AdmobCode/OnEnabledAndDisabledADMOB.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/ScrollRect/ScrollRectStableLayout.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/LayoutGroup/LayoutGroupArrangement.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/InputField/FakeInputModule.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Image/ImageFilledGenerateWork.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/PhysicsRaycasterTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/GraphicRaycasterTests.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/WeightUtility.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/Extrapolation.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/TimelinePlayable.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/TimelineAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Scripting/PlayableTrack.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/Signals/SignalReceiver.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/Signals/SignalEmitter.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Evaluation/RuntimeElement.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Evaluation/RuntimeClipBase.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Animation/AnimationTrack.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Activation/ActivationTrack.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_EventManager.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_UpdateManager.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextUtilities.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextProcessingStack.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteCharacter.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteAnimator.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SelectionCaret.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_RichTextTagsCommon.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_MaterialManager.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_InputValidator.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontFeaturesCommon.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontFeatureTable.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_DefaultControls.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Compatibility.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ColorGradient.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Utils.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/Is.cs
    0.1 kb 0.0% Packages/com.unity.mobile.notifications/Runtime/Android/AndroidNotification.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/math_unity_conversion.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Extensions/IStartupLocaleSelector.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Methods/Mirror.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Methods/Expander.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Methods/Accenter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Pseudo/Message.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Operations/PreloadDatabaseOperation.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Component Localizers/LocalizedAssetBehaviour.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceLocators/DynamicResourceLocators.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/Initialization/PackedPlayModeBuildLogs.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/SpriteShapeGenerator.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/SpriteShape.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/IVoronoiFactory.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/ITriangulator.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/IQualityMesher.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/IPolygonFormat.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/NativeCustomSlice.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/NativeArrayHelper.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/IKManager2DEditorData.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/RewardedAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/MobileAdsClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/AdLoaderClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/InterstitialAd.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdapterStatus.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdValueEventArgs.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdErrorEventArgs.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Util/ImageHook.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Toggle/ToggleGroupTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/ImageTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/PositionAsUV1.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/BaseMeshEffect.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/StencilMaterial.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/MaskableGraphic.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/MaskUtilities.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutUtility.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutRebuilder.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutElement.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/GridLayoutGroup.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/IGraphicEnabledDisabled.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/GraphicRegistry.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/GraphicRaycaster.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/DefaultControls.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Culling/ClipperRegistry.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/UIBehaviour.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/InputModules/BaseInput.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventTrigger.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventSystem.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Tests/Runtime/TMP_RuntimeTests.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs
    0.1 kb 0.0% Packages/com.unity.scriptablebuildpipeline/Runtime/Shared/BundleDetails.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/ComponentSingleton.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/JSONAssetProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/IResourceProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/IInstanceProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceLocations/IResourceLocation.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceLocations/ILocationSizeData.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/ProviderOperation.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/AsyncOperationStatus.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/AsyncOperationHandle.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/AsyncOperationBase.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/LimbSolver2D.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/IKUtility.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/IKManager2D.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/IKChain2D.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/CCDSolver2D.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/WarpTextExample.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshSpawner.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventHandler.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_DigitValidator.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/SkewTextExample.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/CameraController.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01_UGUI.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/BannerClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/BannerClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/DummyClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/TagForUnderAgeOfConsent.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Util/PrivateFieldSetter.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Layout/GridLayoutGroupTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/ToggleTestImageHook.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/RaycastSortingTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/InputModuleTests/DragCallbackCheck.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/CreateSceneUtility.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/TimelineUndo.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/TimeUtility.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/HashUtility.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/TrackAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/TimelineClip.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/GroupTrack.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/Signals/SignalAsset.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/SignalTrack.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/MarkerTrack.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Evaluation/RuntimeClip.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Control/ControlTrack.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Audio/AudioTrack.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TextMeshProUGUI.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TextContainer.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_UGUI_Private.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_MeshUtilities.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_UpdateRegistery.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextElement.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SubMeshUI.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_StyleSheet.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteGlyph.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteAsset.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ShaderUtilities.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ResourcesManager.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_InputField.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontAssetCommon.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontAsset.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_CoroutineTween.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_CharacterInfo.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Character.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/ITextPreProcessor.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/PropertyAttributes.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/UnsafeGenericPool.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Settings/CaseSensitivityType.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Database/LocalizedDatabase.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Locale.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Tests/Runtime/SceneTests.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/Spline.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/PriorityQueue.cs
    0.1 kb 0.0% Packages/com.unity.2d.common/Runtime/InternalBridge/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/UpdateBoundsJob.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Smoothing/ISmoother.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Properties/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IPredicates.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/IMeshFormat.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/IO/IFileFormat.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/ITriangle.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/SpriteSkinBatch.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/BannerClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/RewardedAd.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/MobileAds.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdRequest.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/BannerView.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Toggle/ToggleTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Utility/VertexHelper.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/ToggleGroup.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Selectable.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Scrollbar.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/ScrollRect.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/RectMask2D.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/MaterialModifiers/IMaterialModifier.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutGroup.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/CanvasScaler.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/InputField.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/IPropertyCollector.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/TimelineAttributes.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Timeline.deprecated.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/NotificationFlags.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/BasicScriptPlayable.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/StacktraceFilter.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/ITestRunCallback.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/ListWithEvents.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/IUpdateReceiver.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/ResourceProviders/ISceneProvider.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Diagnostics/DiagnosticEvent.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/DownloadStatus.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/AsyncOperations/ChainOperation.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/Solvers/FABRIK2D.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/Solvers/CCD2D.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/Solver2D.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/VertexZoom.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeB.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeA.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/VertexJitter.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/SimpleScript.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/ObjectSpin.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark04.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark03.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark02.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Android/Utils.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/Utils.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IRewardedAdClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IResponseInfoClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IInterstitialClient.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/TextEditor/TextEditorTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/ScrollRect/ScrollRectTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/ScrollRect/ScrollRectScale.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/ScrollRect/ScrollRectClamp.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/ScrollBar/ScrollBarTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/ScrollBar/ScrollBarClamp.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/InputField/InputFieldTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Image/TestableImage.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/RawImageTestHook.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/RawImageTest.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/MaskTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Graphic/GraphicTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/InputModuleTests/FakeBaseInput.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/InputModuleTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Dropdown/DropdownTests.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/Marker.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TextMeshPro.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_Private.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextInfo.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SubMesh.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Style.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Sprite.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Settings.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ObjectPool.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Dropdown.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Asset.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/FastAction.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/rigid_transform.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double4x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double4x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double4x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double3x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double3x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double3x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double2x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double2x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double2x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/classicnoise4D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/classicnoise3D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/classicnoise2D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/cellular2x2x2.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/CollectionPool.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/TableReference.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Tables/Keys/IKeyGenerator.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Extensions/ISelectorInfo.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Extensions/IFormattingInfo.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Extensions/ILocalesProvider.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Operations/IPreloadRequired.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/JSonMetadataT.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/ISharedMetadata.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedTable.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Localized Reference/LocalizedAsset.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceLocators/IResourceLocator.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/IKeyEvaluator.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/UTess2D/Tessellator.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/UTess2D/ArraySlice.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/PriorityHeap.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Voronoi/Legacy/IVoronoi.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Meshing/IMesh.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Logging/ILogItem.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/ISegment.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/IPolygon.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Geometry/IEdge.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Enums.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Components.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/Utils.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/iOS/Externs.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/Reward.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdValue.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdSize.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/AdLoader.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/Shadow.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/Outline.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/IMeshModifier.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Toggle.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Slider.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/RawImage.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Layout/ILayoutElement.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Image.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Graphic.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/FontData.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Dropdown.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Culling/Clipping.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Button.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Animation/CoroutineTween.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/RaycastResult.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/MoveDirection.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventTriggerType.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventInterfaces.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Utilities/IPropertyPreview.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Extensions/TrackExtensions.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/AssetUpgrade/TimelineUpgrade.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/TestPlatform.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs
    0.1 kb 0.0% Packages/com.unity.test-framework/UnityEngine.TestRunner/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/math.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/Exceptions.cs
    0.1 kb 0.0% Packages/com.unity.addressables/Runtime/ResourceManager/Util/DelegateList.cs
    0.1 kb 0.0% Packages/com.unity.2d.pixel-perfect/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.2d.common/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/Solvers/Limb.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/TeleType.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/EnvMapAnimator.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/DropdownSample.cs
    0.1 kb 0.0% Assets/TextMesh Pro/Examples & Extras/Scripts/ChatController.cs
    0.1 kb 0.0% Assets/Scripts/menuDuzenleme.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/DummyAdBehaviour.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/ButtonBehaviour.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IMobileAdsClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IClientFactory.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IBannerClient.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Common/IAdLoaderClient.cs
    0.1 kb 0.0% Assets/AdmobCode/Scrıpts/VG_RequestADS.cs
    0.1 kb 0.0% Assets/AdmobCode/Scrıpts/VG_GoogleAdmob.cs
    0.1 kb 0.0% Assets/AdmobCode/Scrıpts/UnikDontDestroy.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Slider/SliderTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Image/ImageTests.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/EventSystem/InputModuleTests/MouseUpdate.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Canvas/NestedCanvas.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Button/TestButton.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Tests/Runtime/Button/ButtonTests.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Text.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_MeshInfo.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ListPool.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_LineInfo.cs
    0.1 kb 0.0% Packages/com.unity.textmeshpro/Scripts/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint4x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint4x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint4x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint3x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint3x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint3x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint2x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint2x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint2x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/uint2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/quaternion.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/matrix.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int4x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int4x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int4x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int3x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int3x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int3x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int2x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int2x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int2x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/half4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/half3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/half2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float4x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float4x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float4x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float3x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float3x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float3x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float2x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float2x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float2x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/float2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/double2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool4x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool4x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool4x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool3x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool3x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool3x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool2x4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool2x3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool2x2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/bool2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/psrdnoise2D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/noise3Dgrad.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/cellular3D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/cellular2x2.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/cellular2D.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/PooledObject.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/ObjectPools.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/LinkedPool.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/IObjectPool.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Utilities/ObjectPool/GenericPool.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Extensions/JsonSource.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Settings/ErrorAction.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Extensions/IFormatter.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Settings/Extensions/IInitialize.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Metadata/IMetadata.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/Sweep.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/Otri.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Topology/Osub.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/Runtime/Triangle/Logging/ILog.cs
    0.1 kb 0.0% Packages/com.unity.2d.animation/IK/Runtime/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Utility/ObjectPool.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Text.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/SpriteState.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/SpecializedCollections/IndexedSet.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Navigation.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Misc.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Mask.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/IMaskable.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Culling/IClipRegion.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/ColorBlock.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/Properties/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/EventSystem/EventHandle.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Properties/AssemblyInfo.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Playables/ITimeControl.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/ILayerable.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/MarkerList.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Evaluation/IntervalTree.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/DiscreteTime.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/AssetUpgrade/TrackUpgrade.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/AssetUpgrade/ClipUpgrade.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Animation/ICurvesOwner.cs
    0.1 kb 0.0% Assets/Scripts/tekKisilik.cs
    0.1 kb 0.0% Assets/Scripts/sahneGecisi.cs
    0.1 kb 0.0% Assets/Scripts/rakamYazma2.cs
    0.1 kb 0.0% Assets/Scripts/rakamYazma.cs
    0.1 kb 0.0% Assets/Scripts/ciftKisilik.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Platforms/Unity/Countdown.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/ResponseInfo.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/NativeAdType.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/AdPosition.cs
    0.1 kb 0.0% Assets/AdmobCode/ButtonADMOB.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/random.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/matrix.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int4.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int3.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/int2.gen.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/noise4D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/noise3D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/noise2D.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/Noise/common.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Output/IOutput.cs
    0.1 kb 0.0% Packages/com.unity.localization/Runtime/Smart Format/Core/Extensions/ISource.cs
    0.1 kb 0.0% Packages/com.unity.2d.spriteshape/Runtime/External/LibTessDotNet/Dict.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Resources/GoogleMobileAdsSettings.asset
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/Utility/ListPool.cs
    0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UI/Core/IMask.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/Events/IMarker.cs
    0.1 kb 0.0% Packages/com.unity.timeline/Runtime/ClipCaps.cs
    0.1 kb 0.0% Assets/Scripts/local.cs
    0.1 kb 0.0% Assets/Scripts/ayarlar.cs
    0.1 kb 0.0% Assets/GoogleMobileAds/Api/Core/Gender.cs
    0.1 kb 0.0% Packages/com.unity.mathematics/Unity.Mathematics/half.cs
    -------------------------------------------------------------------------------
    Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
    System memory in use before: 157.5 MB.
    System memory in use after: 156.9 MB.

    Unloading 200 unused Assets to reduce memory usage. Loaded Objects now: 4312.
    Total: 1602.096100 ms (FindLiveObjects: 1.072600 ms CreateObjectMapping: 0.475600 ms MarkObjects: 1598.644000 ms DeleteObjects: 1.899900 ms)

    DisplayProgressNotification: Build Successful
    Unloading 6 Unused Serialized files (Serialized files now loaded: 0)
    Loaded scene 'Temp/__Backupscenes/0.backup'
    Deserialize: 14.630 ms
    Integration: 349.633 ms
    Integration of assets: 0.211 ms
    Thread Wait Time: 9.848 ms
    Total Operation Time: 374.322 ms
    System memory in use before: 153.2 MB.
    System memory in use after: 153.5 MB.

    Unloading 0 unused Assets to reduce memory usage. Loaded Objects now: 4493.
    Total: 1301.300400 ms (FindLiveObjects: 1.261500 ms CreateObjectMapping: 0.500900 ms MarkObjects: 1299.511800 ms DeleteObjects: 0.023300 ms)

    Build completed with a result of 'Succeeded' in 160 seconds (160149 ms)
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cec30db (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cec300b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e21634ec0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e21634d88 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e215f091b (Mono JIT Code) UnityEditor.BuildPlayerWindow/DefaultBuildMethods:BuildPlayer (UnityEditor.BuildPlayerOptions)
    0x0000022e20facc0b (Mono JIT Code) UnityEditor.BuildPlayerWindow:CallBuildMethods (bool,UnityEditor.BuildOptions)
    0x0000022e20fa90f3 (Mono JIT Code) UnityEditor.BuildPlayerWindow:GUIBuildButtons (UnityEditor.Modules.IBuildWindowExtension,bool,bool,bool,UnityEditor.Build.BuildPlatform)
    0x0000022e20f9d993 (Mono JIT Code) UnityEditor.BuildPlayerWindow:ShowBuildTargetSettings ()
    0x0000022e20f96493 (Mono JIT Code) UnityEditor.BuildPlayerWindow:OnGUI ()
    0x0000022d74f484f3 (Mono JIT Code) UnityEditor.HostView:InvokeOnGUI (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f482a3 (Mono JIT Code) UnityEditor.DockArea:DrawView (UnityEngine.Rect,UnityEngine.Rect)
    0x0000022d74f3bf73 (Mono JIT Code) UnityEditor.DockArea:OldOnGUI ()
    0x0000022d74f239e0 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f22cab (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,bool)
    0x0000022d74f219bb (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,System.Action,bool)
    0x0000022d74f21843 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleIMGUIEvent (UnityEngine.Event,bool)
    0x0000022d74f2147b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUIRaw (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74f21363 (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:SendEventToIMGUI (UnityEngine.UIElements.EventBase,bool,bool)
    0x0000022d74e79e2b (Mono JIT Code) UnityEngine.UIElements.IMGUIContainer:HandleEvent (UnityEngine.UIElements.EventBase)
    0x0000022d74e703f8 (Mono JIT Code) UnityEngine.UIElements.CallbackEventHandler:HandleEventAtTargetPhase (UnityEngine.UIElements.EventBase)
    0x0000022d74f20673 (Mono JIT Code) UnityEngine.UIElements.MouseCaptureDispatchingStrategy:DispatchEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6e7ae (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:ApplyDispatchingStrategies (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,bool)
    0x0000022d74e6e343 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e732f3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEventQueue ()
    0x0000022d74e71d83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:OpenGate ()
    0x0000022d74e71ceb (Mono JIT Code) UnityEngine.UIElements.EventDispatcherGate:Dispose ()
    0x0000022d74e6e5d3 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:processEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
    0x0000022d74e6de83 (Mono JIT Code) UnityEngine.UIElements.EventDispatcher:Dispatch (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
    0x0000022d74e6dd1b (Mono JIT Code) UnityEngine.UIElements.BaseVisualElementPanel:SendEvent (UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode)
    0x0000022d74f02fab (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel)
    0x0000022d74f02a8b (Mono JIT Code) UnityEngine.UIElements.UIElementsUtility:UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&)
    0x0000022d74f0288f (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration:processEvent (int,intptr)
    0x0000022d74f027cb (Mono JIT Code) UnityEngine.UIElements.UIEventRegistration/<>c:<.cctor>b__1_2 (int,intptr)
    0x0000022d74f0262d (Mono JIT Code) UnityEngine.GUIUtility:processEvent (int,intptr,bool&)
    0x0000022d74f026de (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_int_intptr_intptr& (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac1776b5 (Unity) ScriptingInvocation::Invoke<void>
    0x00007ff7aa83f7cd (Unity) Scripting::UnityEngine::GUIUtilityProxy::processEvent
    0x00007ff7acda4ea6 (Unity) GUIView::processRetainedMode
    0x00007ff7ad8279b5 (Unity) GUIView::OnInputEvent
    0x00007ff7acda4d98 (Unity) GUIView::processInputEvent
    0x00007ff7ad828e88 (Unity) GUIView::processEventMessages
    0x00007ff7ad820390 (Unity) GUIView::GUIViewWndProc
    0x00007ffd7a035c1d (USER32) CallWindowProcW
    0x00007ffd7a035612 (USER32) DispatchMessageW
    0x00007ff7ad7eecd9 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Refresh completed in 0.050625 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 50.488ms
    Refresh completed in 0.025524 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 25.435ms
    Start importing Assets/Scenes/ayarlar.unity using Guid(2df5a7f85eec8214daca1dbfb16e254d) Importer(-1,00000000000000000000000000000000) -> (artifact id: '45eaee574f7844e86bae79f35e49299d') in 0.001201 seconds
    Refreshing native plugins compatible for Editor in 1.46 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions) scanfilter:
    RefreshProfiler: Total: 150.816ms
    Refresh completed in 0.010530 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 10.461ms
    Refresh completed in 0.013068 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 12.705ms
    Refresh completed in 0.026442 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 26.005ms
    Refresh completed in 0.028975 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 28.086ms
    Refresh completed in 0.021644 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 20.933ms
    Refresh completed in 0.023080 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 22.691ms
    Refresh completed in 0.033413 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 32.998ms
    Refresh completed in 0.014411 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 13.876ms
    Refresh completed in 0.028294 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 27.937ms
    Refresh completed in 0.016160 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 15.718ms
    Refresh completed in 0.012961 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 12.536ms
    Start ondemand import (priority ImportantBackground): Assets/Scripts/local.cs (Guid(b2ef3eefba6c9e04c9a1089c0619413f) Importer(815301076,1909f56bfc062723c751e8b465ee728b))
    Refresh completed in 0.011502 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 11.451ms
    Refresh completed in 0.011036 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 10.987ms
    SpriteAtlasPacking completed in 0.027693 sec
    Reloading assemblies for play mode.
    Begin MonoManager ReloadAssembly
    Native extension for Lumin target not found
    Native extension for UWP target not found
    Native extension for LinuxStandalone target not found
    Native extension for WindowsStandalone target not found
    Native extension for AppleTV target not found
    Native extension for iOS target not found
    Native extension for Android target not found
    Native extension for OSXStandalone target not found
    Native extension for WebGL target not found
    Refreshing native plugins compatible for Editor in 1.66 ms, found 1 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    Invoked RoslynAnalysisRunner static constructor.
    RoslynAnalysisRunner will not be running.
    RoslynAnalysisRunner has terminated.
    [MODES] ModeService[none].Initialize
    [MODES] ModeService[none].LoadModes
    [MODES] Loading mode Default (0) for mode-current-id-NumberEstimate
    Mono: successfully reloaded assembly
    - Completed reload, in 10.954 seconds
    Platform modules already initialized, skipping
    Loaded scene 'Temp/__Backupscenes/0.backup'
    Deserialize: 32.891 ms
    Integration: 453.540 ms
    Integration of assets: 0.040 ms
    Thread Wait Time: 15.420 ms
    Total Operation Time: 501.891 ms
    [MODES] ModeService[default].RefreshMenus
    [MODES] ModeService[default].UpdateModeMenus
    [remote] error: Init socket failed
    Refresh completed in 0.169873 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 169.838ms
    Refresh completed in 0.075509 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 74.741ms
    1
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd2a893 (Mono JIT Code) [local.cs:35] local:LocaleSelected (int)
    0x0000022e1cd2a825 (Mono JIT Code) UnityEngine.Events.InvokableCall`1<int>:Invoke (int)
    0x0000022d74f875d9 (Mono JIT Code) UnityEngine.Events.UnityEvent`1<int>:Invoke (int)
    0x0000022d74f872ab (Mono JIT Code) [TMP_Dropdown.cs:433] TMPro.TMP_Dropdown:SetValue (int,bool)
    0x0000022d74f87153 (Mono JIT Code) [TMP_Dropdown.cs:407] TMPro.TMP_Dropdown:set_value (int)
    0x0000022e1cd2a7bb (Mono JIT Code) [ayarlar.cs:121] ayarlar:trSec ()
    0x0000022d74f88bf9 (Mono JIT Code) UnityEngine.Events.InvokableCall:Invoke ()
    0x0000022e1cd2a56b (Mono JIT Code) UnityEngine.Events.UnityEvent:Invoke ()
    0x0000022e1cd2a463 (Mono JIT Code) [Button.cs:69] UnityEngine.UI.Button:press ()
    0x0000022e1cd2a3a3 (Mono JIT Code) [Button.cs:111] UnityEngine.UI.Button:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cd2a349 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cd1fec2 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cd29fbb (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdfcef3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdf76d3 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdf757b (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdf7043 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fb1bff (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e2157e250 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Unloading 10 Unused Serialized files (Serialized files now loaded: 0)
    UnloadTime: 4.656800 ms
    Loaded scene 'Assets/Scenes/menu.unity'
    Deserialize: 358.200 ms
    Integration: 100.187 ms
    Integration of assets: 0.547 ms
    Thread Wait Time: 13.176 ms
    Total Operation Time: 472.110 ms
    System memory in use before: 144.1 MB.
    System memory in use after: 144.3 MB.

    Unloading 378 unused Assets to reduce memory usage. Loaded Objects now: 4302.
    Total: 28.680600 ms (FindLiveObjects: 0.696100 ms CreateObjectMapping: 0.617300 ms MarkObjects: 26.651600 ms DeleteObjects: 0.711700 ms)

    Dummy .ctor
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd31803 (Mono JIT Code) [DummyClient.cs:31] GoogleMobileAds.Common.DummyClient:.ctor ()
    0x0000022e1cd3173b (Mono JIT Code) [GoogleMobileAdsClientFactory.cs:88] GoogleMobileAds.GoogleMobileAdsClientFactory:MobileAdsInstance ()
    0x0000022e1cd315ee (Mono JIT Code) [MobileAds.cs:117] GoogleMobileAds.Api.MobileAds:GetMobileAdsClient ()
    0x0000022e1cd31553 (Mono JIT Code) [MobileAds.cs:40] GoogleMobileAds.Api.MobileAds:.ctor ()
    0x0000022e1cd314a3 (Mono JIT Code) [MobileAds.cs:52] GoogleMobileAds.Api.MobileAds:get_Instance ()
    0x0000022e1cd313eb (Mono JIT Code) [MobileAds.cs:105] GoogleMobileAds.Api.MobileAds:SetiOSAppPauseOnBackground (bool)
    0x0000022e1cd30c83 (Mono JIT Code) [VG_GoogleAdmob.cs:75] VG_GoogleAdmob:Start ()
    0x0000022e21558af0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac147cbe (Unity) MonoBehaviour::InvokeMethodOrCoroutineChecked
    0x00007ff7ac147de8 (Unity) MonoBehaviour::InvokeMethodOrCoroutineChecked
    0x00007ff7ac142b12 (Unity) MonoBehaviour::DelayedStartCall
    0x00007ff7ab62d4b4 (Unity) DelayedCallManager::Update
    0x00007ff7aba93166 (Unity) `InitPlayerLoopCallbacks'::`2'::EarlyUpdateScriptRunDelayedStartupFrameRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Dummy SetiOSAppPauseOnBackground
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd31b23 (Mono JIT Code) [DummyClient.cs:116] GoogleMobileAds.Common.DummyClient:SetiOSAppPauseOnBackground (bool)
    0x0000022e1cd31406 (Mono JIT Code) [MobileAds.cs:106] GoogleMobileAds.Api.MobileAds:SetiOSAppPauseOnBackground (bool)
    0x0000022e1cd30c83 (Mono JIT Code) [VG_GoogleAdmob.cs:75] VG_GoogleAdmob:Start ()
    0x0000022e21558af0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac147cbe (Unity) MonoBehaviour::InvokeMethodOrCoroutineChecked
    0x00007ff7ac147de8 (Unity) MonoBehaviour::InvokeMethodOrCoroutineChecked
    0x00007ff7ac142b12 (Unity) MonoBehaviour::DelayedStartCall
    0x00007ff7ab62d4b4 (Unity) DelayedCallManager::Update
    0x00007ff7aba93166 (Unity) `InitPlayerLoopCallbacks'::`2'::EarlyUpdateScriptRunDelayedStartupFrameRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Dummy Initialize
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd31c83 (Mono JIT Code) [DummyClient.cs:77] GoogleMobileAds.Common.DummyClient:Initialize (string)
    0x0000022e1cd31b79 (Mono JIT Code) [MobileAds.cs:61] GoogleMobileAds.Api.MobileAds:Initialize (string)
    0x0000022e1cd30c9b (Mono JIT Code) [VG_GoogleAdmob.cs:81] VG_GoogleAdmob:Start ()
    0x0000022e21558af0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac147cbe (Unity) MonoBehaviour::InvokeMethodOrCoroutineChecked
    0x00007ff7ac147de8 (Unity) MonoBehaviour::InvokeMethodOrCoroutineChecked
    0x00007ff7ac142b12 (Unity) MonoBehaviour::DelayedStartCall
    0x00007ff7ab62d4b4 (Unity) DelayedCallManager::Update
    0x00007ff7aba93166 (Unity) `InitPlayerLoopCallbacks'::`2'::EarlyUpdateScriptRunDelayedStartupFrameRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Dummy .ctor
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd31803 (Mono JIT Code) [DummyClient.cs:31] GoogleMobileAds.Common.DummyClient:.ctor ()
    0x0000022e1cd32bdb (Mono JIT Code) [GoogleMobileAdsClientFactory.cs:51] GoogleMobileAds.GoogleMobileAdsClientFactory:BuildRewardBasedVideoAdClient ()
    0x0000022e1cd32516 (Mono JIT Code) [RewardBasedVideoAd.cs:38] GoogleMobileAds.Api.RewardBasedVideoAd:.ctor ()
    0x0000022e1cd322e3 (Mono JIT Code) [RewardBasedVideoAd.cs:25] GoogleMobileAds.Api.RewardBasedVideoAd:.cctor ()
    0x0000022e1cd31e4d (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab01c (mono-2.0-bdwgc) [object.c:477] mono_runtime_class_init_full
    0x00007ffd178759c2 (mono-2.0-bdwgc) [method-to-ir.c:10799] mono_method_to_ir
    0x00007ffd17814539 (mono-2.0-bdwgc) [mini.c:3465] mini_method_compile
    0x00007ffd17819151 (mono-2.0-bdwgc) [mini.c:4201] mono_jit_compile_method_inner
    0x00007ffd1781d572 (mono-2.0-bdwgc) [mini-runtime.c:2133] mono_jit_compile_method_with_opt
    0x00007ffd178f9836 (mono-2.0-bdwgc) [mini-trampolines.c:716] common_call_trampoline
    0x00007ffd178fb854 (mono-2.0-bdwgc) [mini-trampolines.c:848] mono_magic_trampoline
    0x0000022d720303a3 ((<unknown>))
    0x0000022e1cd30cab (Mono JIT Code) [VG_GoogleAdmob.cs:81] VG_GoogleAdmob:Start ()
    0x0000022e21558af0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac147cbe (Unity) MonoBehaviour::InvokeMethodOrCoroutineChecked
    0x00007ff7ac147de8 (Unity) MonoBehaviour::InvokeMethodOrCoroutineChecked
    0x00007ff7ac142b12 (Unity) MonoBehaviour::DelayedStartCall
    0x00007ff7ab62d4b4 (Unity) DelayedCallManager::Update
    0x00007ff7aba93166 (Unity) `InitPlayerLoopCallbacks'::`2'::EarlyUpdateScriptRunDelayedStartupFrameRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Dummy CreateRewardBasedVideoAd
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd32ce3 (Mono JIT Code) [DummyClient.cs:206] GoogleMobileAds.Common.DummyClient:CreateRewardBasedVideoAd ()
    0x0000022e1cd32554 (Mono JIT Code) [RewardBasedVideoAd.cs:41] GoogleMobileAds.Api.RewardBasedVideoAd:.ctor ()
    0x0000022e1cd322e3 (Mono JIT Code) [RewardBasedVideoAd.cs:25] GoogleMobileAds.Api.RewardBasedVideoAd:.cctor ()
    0x0000022e1cd31e4d (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab01c (mono-2.0-bdwgc) [object.c:477] mono_runtime_class_init_full
    0x00007ffd178759c2 (mono-2.0-bdwgc) [method-to-ir.c:10799] mono_method_to_ir
    0x00007ffd17814539 (mono-2.0-bdwgc) [mini.c:3465] mini_method_compile
    0x00007ffd17819151 (mono-2.0-bdwgc) [mini.c:4201] mono_jit_compile_method_inner
    0x00007ffd1781d572 (mono-2.0-bdwgc) [mini-runtime.c:2133] mono_jit_compile_method_with_opt
    0x00007ffd178f9836 (mono-2.0-bdwgc) [mini-trampolines.c:716] common_call_trampoline
    0x00007ffd178fb854 (mono-2.0-bdwgc) [mini-trampolines.c:848] mono_magic_trampoline
    0x0000022d720303a3 ((<unknown>))
    0x0000022e1cd30cab (Mono JIT Code) [VG_GoogleAdmob.cs:81] VG_GoogleAdmob:Start ()
    0x0000022e21558af0 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac147cbe (Unity) MonoBehaviour::InvokeMethodOrCoroutineChecked
    0x00007ff7ac147de8 (Unity) MonoBehaviour::InvokeMethodOrCoroutineChecked
    0x00007ff7ac142b12 (Unity) MonoBehaviour::DelayedStartCall
    0x00007ff7ab62d4b4 (Unity) DelayedCallManager::Update
    0x00007ff7aba93166 (Unity) `InitPlayerLoopCallbacks'::`2'::EarlyUpdateScriptRunDelayedStartupFrameRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Unloading 18 Unused Serialized files (Serialized files now loaded: 0)
    UnloadTime: 1.661000 ms
    Loaded scene 'Temp/__Backupscenes/0.backup'
    Deserialize: 610.111 ms
    Integration: 20.693 ms
    Integration of assets: 1.574 ms
    Thread Wait Time: 12.826 ms
    Total Operation Time: 645.204 ms
    System memory in use before: 142.8 MB.
    System memory in use after: 143.1 MB.

    Unloading 23 unused Assets to reduce memory usage. Loaded Objects now: 4408.
    Total: 23.353300 ms (FindLiveObjects: 0.507200 ms CreateObjectMapping: 0.272700 ms MarkObjects: 22.483200 ms DeleteObjects: 0.088000 ms)

    InterstitialLoaded event received
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd3aba3 (Mono JIT Code) [VG_GoogleAdmob.cs:351] VG_GoogleAdmob:InterstitialLoaded (object,System.EventArgs)
    0x0000022e1cd3ab61 (Mono JIT Code) [InterstitialAd.cs:36] GoogleMobileAds.Api.InterstitialAd:<.ctor>b__1_0 (object,System.EventArgs)
    0x0000022e1cd3a35b (Mono JIT Code) [InterstitialClient.cs:97] GoogleMobileAds.Unity.InterstitialClient:LoadAd (GoogleMobileAds.Api.AdRequest)
    0x0000022e1cd3a14e (Mono JIT Code) [InterstitialAd.cs:100] GoogleMobileAds.Api.InterstitialAd:LoadAd (GoogleMobileAds.Api.AdRequest)
    0x0000022e1cd36ffb (Mono JIT Code) [VG_GoogleAdmob.cs:267] VG_GoogleAdmob:RequestInterstitial ()
    0x0000022e1cd34343 (Mono JIT Code) [VG_RequestADS.cs:34] VG_RequestADS/<RequestAds>d__6:MoveNext ()
    0x0000022d74fac96c (Mono JIT Code) UnityEngine.SetupCoroutine:InvokeMoveNext (System.Collections.IEnumerator,intptr)
    0x0000022d74faca97 (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_object_intptr (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac13595b (Unity) Coroutine::Run
    0x00007ff7ac13277c (Unity) Coroutine::ContinueCoroutine
    0x00007ff7ab62d4b4 (Unity) DelayedCallManager::Update
    0x00007ff7aba93e56 (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunDelayedDynamicFrameRateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    You are trying to create a MonoBehaviour using the 'new' keyword. This is not allowed. MonoBehaviours can only be added using AddComponent(). Alternatively, your script can inherit from ScriptableObject or no base class at all
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac14243e (Unity) MonoBehaviour::ConstructorCheck
    0x00007ff7ac423cc2 (Unity) MonoBehaviour_CUSTOM_ConstructorCheck
    0x0000022e2157f4f7 (Mono JIT Code) (wrapper managed-to-native) UnityEngine.MonoBehaviour:ConstructorCheck (UnityEngine.Object)
    0x0000022e2157f43b (Mono JIT Code) UnityEngine.MonoBehaviour:.ctor ()
    0x0000022e1cd4106b (Mono JIT Code) ButtonBehaviour:.ctor ()
    0x0000022e1cd40f43 (Mono JIT Code) [BannerClient.cs:64] GoogleMobileAds.Unity.BannerClient:CreateButtonBehavior ()
    0x0000022e1cd3ea53 (Mono JIT Code) [BannerClient.cs:144] GoogleMobileAds.Unity.BannerClient:ShowBannerView ()
    0x0000022e1cd3e7fb (Mono JIT Code) [BannerClient.cs:124] GoogleMobileAds.Unity.BannerClient:LoadAd (GoogleMobileAds.Api.AdRequest)
    0x0000022e1cd3e79e (Mono JIT Code) [BannerView.cs:62] GoogleMobileAds.Api.BannerView:LoadAd (GoogleMobileAds.Api.AdRequest)
    0x0000022e1cd3b0d3 (Mono JIT Code) [VG_GoogleAdmob.cs:231] VG_GoogleAdmob:RequestBanner (GoogleMobileAds.Api.AdPosition)
    0x0000022e1cd3436b (Mono JIT Code) [VG_RequestADS.cs:37] VG_RequestADS/<RequestAds>d__6:MoveNext ()
    0x0000022d74fac96c (Mono JIT Code) UnityEngine.SetupCoroutine:InvokeMoveNext (System.Collections.IEnumerator,intptr)
    0x0000022d74faca97 (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_object_intptr (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac13595b (Unity) Coroutine::Run
    0x00007ff7ac13277c (Unity) Coroutine::ContinueCoroutine
    0x00007ff7ab62d4b4 (Unity) DelayedCallManager::Update
    0x00007ff7aba93e56 (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunDelayedDynamicFrameRateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    AdLoaded event received
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd414e3 (Mono JIT Code) [VG_GoogleAdmob.cs:322] VG_GoogleAdmob:AdLoaded (object,System.EventArgs)
    0x0000022e1cd414a1 (Mono JIT Code) [BannerView.cs:112] GoogleMobileAds.Api.BannerView:<ConfigureBannerEvents>b__29_0 (object,System.EventArgs)
    0x0000022e1cd3e823 (Mono JIT Code) [BannerClient.cs:126] GoogleMobileAds.Unity.BannerClient:LoadAd (GoogleMobileAds.Api.AdRequest)
    0x0000022e1cd3e79e (Mono JIT Code) [BannerView.cs:62] GoogleMobileAds.Api.BannerView:LoadAd (GoogleMobileAds.Api.AdRequest)
    0x0000022e1cd3b0d3 (Mono JIT Code) [VG_GoogleAdmob.cs:231] VG_GoogleAdmob:RequestBanner (GoogleMobileAds.Api.AdPosition)
    0x0000022e1cd3436b (Mono JIT Code) [VG_RequestADS.cs:37] VG_RequestADS/<RequestAds>d__6:MoveNext ()
    0x0000022d74fac96c (Mono JIT Code) UnityEngine.SetupCoroutine:InvokeMoveNext (System.Collections.IEnumerator,intptr)
    0x0000022d74faca97 (Mono JIT Code) (wrapper runtime-invoke) <Module>:runtime_invoke_void_object_intptr (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac13595b (Unity) Coroutine::Run
    0x00007ff7ac13277c (Unity) Coroutine::ContinueCoroutine
    0x00007ff7ab62d4b4 (Unity) DelayedCallManager::Update
    0x00007ff7aba93e56 (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunDelayedDynamicFrameRateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    0
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd2a893 (Mono JIT Code) [local.cs:35] local:LocaleSelected (int)
    0x0000022e1cd2a825 (Mono JIT Code) UnityEngine.Events.InvokableCall`1<int>:Invoke (int)
    0x0000022d74f875d9 (Mono JIT Code) UnityEngine.Events.UnityEvent`1<int>:Invoke (int)
    0x0000022d74f872ab (Mono JIT Code) [TMP_Dropdown.cs:433] TMPro.TMP_Dropdown:SetValue (int,bool)
    0x0000022d74f87153 (Mono JIT Code) [TMP_Dropdown.cs:407] TMPro.TMP_Dropdown:set_value (int)
    0x0000022e1cd4571b (Mono JIT Code) [ayarlar.cs:126] ayarlar:engSec ()
    0x0000022d74f88bf9 (Mono JIT Code) UnityEngine.Events.InvokableCall:Invoke ()
    0x0000022e1cd2a56b (Mono JIT Code) UnityEngine.Events.UnityEvent:Invoke ()
    0x0000022e1cd2a463 (Mono JIT Code) [Button.cs:69] UnityEngine.UI.Button:press ()
    0x0000022e1cd2a3a3 (Mono JIT Code) [Button.cs:111] UnityEngine.UI.Button:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cd2a349 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cd1fec2 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cd29fbb (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdfcef3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdf76d3 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdf757b (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdf7043 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fb1bff (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e2157e250 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    1
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd2a893 (Mono JIT Code) [local.cs:35] local:LocaleSelected (int)
    0x0000022e1cd2a825 (Mono JIT Code) UnityEngine.Events.InvokableCall`1<int>:Invoke (int)
    0x0000022d74f875d9 (Mono JIT Code) UnityEngine.Events.UnityEvent`1<int>:Invoke (int)
    0x0000022d74f872ab (Mono JIT Code) [TMP_Dropdown.cs:433] TMPro.TMP_Dropdown:SetValue (int,bool)
    0x0000022d74f87153 (Mono JIT Code) [TMP_Dropdown.cs:407] TMPro.TMP_Dropdown:set_value (int)
    0x0000022e1cd2a7bb (Mono JIT Code) [ayarlar.cs:121] ayarlar:trSec ()
    0x0000022d74f88bf9 (Mono JIT Code) UnityEngine.Events.InvokableCall:Invoke ()
    0x0000022e1cd2a56b (Mono JIT Code) UnityEngine.Events.UnityEvent:Invoke ()
    0x0000022e1cd2a463 (Mono JIT Code) [Button.cs:69] UnityEngine.UI.Button:press ()
    0x0000022e1cd2a3a3 (Mono JIT Code) [Button.cs:111] UnityEngine.UI.Button:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cd2a349 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cd1fec2 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cd29fbb (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdfcef3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdf76d3 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdf757b (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdf7043 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fb1bff (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e2157e250 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    0
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd2a893 (Mono JIT Code) [local.cs:35] local:LocaleSelected (int)
    0x0000022e1cd2a825 (Mono JIT Code) UnityEngine.Events.InvokableCall`1<int>:Invoke (int)
    0x0000022d74f875d9 (Mono JIT Code) UnityEngine.Events.UnityEvent`1<int>:Invoke (int)
    0x0000022d74f872ab (Mono JIT Code) [TMP_Dropdown.cs:433] TMPro.TMP_Dropdown:SetValue (int,bool)
    0x0000022d74f87153 (Mono JIT Code) [TMP_Dropdown.cs:407] TMPro.TMP_Dropdown:set_value (int)
    0x0000022e1cd4571b (Mono JIT Code) [ayarlar.cs:126] ayarlar:engSec ()
    0x0000022d74f88bf9 (Mono JIT Code) UnityEngine.Events.InvokableCall:Invoke ()
    0x0000022e1cd2a56b (Mono JIT Code) UnityEngine.Events.UnityEvent:Invoke ()
    0x0000022e1cd2a463 (Mono JIT Code) [Button.cs:69] UnityEngine.UI.Button:press ()
    0x0000022e1cd2a3a3 (Mono JIT Code) [Button.cs:111] UnityEngine.UI.Button:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cd2a349 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cd1fec2 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cd29fbb (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdfcef3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdf76d3 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdf757b (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdf7043 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fb1bff (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e2157e250 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    1
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd2a893 (Mono JIT Code) [local.cs:35] local:LocaleSelected (int)
    0x0000022e1cd2a825 (Mono JIT Code) UnityEngine.Events.InvokableCall`1<int>:Invoke (int)
    0x0000022d74f875d9 (Mono JIT Code) UnityEngine.Events.UnityEvent`1<int>:Invoke (int)
    0x0000022d74f872ab (Mono JIT Code) [TMP_Dropdown.cs:433] TMPro.TMP_Dropdown:SetValue (int,bool)
    0x0000022d74f87153 (Mono JIT Code) [TMP_Dropdown.cs:407] TMPro.TMP_Dropdown:set_value (int)
    0x0000022e1cd2a7bb (Mono JIT Code) [ayarlar.cs:121] ayarlar:trSec ()
    0x0000022d74f88bf9 (Mono JIT Code) UnityEngine.Events.InvokableCall:Invoke ()
    0x0000022e1cd2a56b (Mono JIT Code) UnityEngine.Events.UnityEvent:Invoke ()
    0x0000022e1cd2a463 (Mono JIT Code) [Button.cs:69] UnityEngine.UI.Button:press ()
    0x0000022e1cd2a3a3 (Mono JIT Code) [Button.cs:111] UnityEngine.UI.Button:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cd2a349 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cd1fec2 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cd29fbb (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdfcef3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdf76d3 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdf757b (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdf7043 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fb1bff (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e2157e250 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    0
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd2a893 (Mono JIT Code) [local.cs:35] local:LocaleSelected (int)
    0x0000022e1cd2a825 (Mono JIT Code) UnityEngine.Events.InvokableCall`1<int>:Invoke (int)
    0x0000022d74f875d9 (Mono JIT Code) UnityEngine.Events.UnityEvent`1<int>:Invoke (int)
    0x0000022d74f872ab (Mono JIT Code) [TMP_Dropdown.cs:433] TMPro.TMP_Dropdown:SetValue (int,bool)
    0x0000022d74f87153 (Mono JIT Code) [TMP_Dropdown.cs:407] TMPro.TMP_Dropdown:set_value (int)
    0x0000022e1cd4571b (Mono JIT Code) [ayarlar.cs:126] ayarlar:engSec ()
    0x0000022d74f88bf9 (Mono JIT Code) UnityEngine.Events.InvokableCall:Invoke ()
    0x0000022e1cd2a56b (Mono JIT Code) UnityEngine.Events.UnityEvent:Invoke ()
    0x0000022e1cd2a463 (Mono JIT Code) [Button.cs:69] UnityEngine.UI.Button:press ()
    0x0000022e1cd2a3a3 (Mono JIT Code) [Button.cs:111] UnityEngine.UI.Button:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cd2a349 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cd1fec2 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cd29fbb (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdfcef3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdf76d3 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdf757b (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdf7043 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fb1bff (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e2157e250 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    1
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd2a893 (Mono JIT Code) [local.cs:35] local:LocaleSelected (int)
    0x0000022e1cd2a825 (Mono JIT Code) UnityEngine.Events.InvokableCall`1<int>:Invoke (int)
    0x0000022d74f875d9 (Mono JIT Code) UnityEngine.Events.UnityEvent`1<int>:Invoke (int)
    0x0000022d74f872ab (Mono JIT Code) [TMP_Dropdown.cs:433] TMPro.TMP_Dropdown:SetValue (int,bool)
    0x0000022d74f87153 (Mono JIT Code) [TMP_Dropdown.cs:407] TMPro.TMP_Dropdown:set_value (int)
    0x0000022e1cd2a7bb (Mono JIT Code) [ayarlar.cs:121] ayarlar:trSec ()
    0x0000022d74f88bf9 (Mono JIT Code) UnityEngine.Events.InvokableCall:Invoke ()
    0x0000022e1cd2a56b (Mono JIT Code) UnityEngine.Events.UnityEvent:Invoke ()
    0x0000022e1cd2a463 (Mono JIT Code) [Button.cs:69] UnityEngine.UI.Button:press ()
    0x0000022e1cd2a3a3 (Mono JIT Code) [Button.cs:111] UnityEngine.UI.Button:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cd2a349 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cd1fec2 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cd29fbb (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdfcef3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdf76d3 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdf757b (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdf7043 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fb1bff (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e2157e250 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    0
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd2a893 (Mono JIT Code) [local.cs:35] local:LocaleSelected (int)
    0x0000022e1cd2a825 (Mono JIT Code) UnityEngine.Events.InvokableCall`1<int>:Invoke (int)
    0x0000022d74f875d9 (Mono JIT Code) UnityEngine.Events.UnityEvent`1<int>:Invoke (int)
    0x0000022d74f872ab (Mono JIT Code) [TMP_Dropdown.cs:433] TMPro.TMP_Dropdown:SetValue (int,bool)
    0x0000022d74f87153 (Mono JIT Code) [TMP_Dropdown.cs:407] TMPro.TMP_Dropdown:set_value (int)
    0x0000022e1cd4571b (Mono JIT Code) [ayarlar.cs:126] ayarlar:engSec ()
    0x0000022d74f88bf9 (Mono JIT Code) UnityEngine.Events.InvokableCall:Invoke ()
    0x0000022e1cd2a56b (Mono JIT Code) UnityEngine.Events.UnityEvent:Invoke ()
    0x0000022e1cd2a463 (Mono JIT Code) [Button.cs:69] UnityEngine.UI.Button:press ()
    0x0000022e1cd2a3a3 (Mono JIT Code) [Button.cs:111] UnityEngine.UI.Button:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cd2a349 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cd1fec2 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cd29fbb (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdfcef3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdf76d3 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdf757b (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdf7043 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fb1bff (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e2157e250 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    1
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd2a893 (Mono JIT Code) [local.cs:35] local:LocaleSelected (int)
    0x0000022e1cd2a825 (Mono JIT Code) UnityEngine.Events.InvokableCall`1<int>:Invoke (int)
    0x0000022d74f875d9 (Mono JIT Code) UnityEngine.Events.UnityEvent`1<int>:Invoke (int)
    0x0000022d74f872ab (Mono JIT Code) [TMP_Dropdown.cs:433] TMPro.TMP_Dropdown:SetValue (int,bool)
    0x0000022d74f87153 (Mono JIT Code) [TMP_Dropdown.cs:407] TMPro.TMP_Dropdown:set_value (int)
    0x0000022e1cd2a7bb (Mono JIT Code) [ayarlar.cs:121] ayarlar:trSec ()
    0x0000022d74f88bf9 (Mono JIT Code) UnityEngine.Events.InvokableCall:Invoke ()
    0x0000022e1cd2a56b (Mono JIT Code) UnityEngine.Events.UnityEvent:Invoke ()
    0x0000022e1cd2a463 (Mono JIT Code) [Button.cs:69] UnityEngine.UI.Button:press ()
    0x0000022e1cd2a3a3 (Mono JIT Code) [Button.cs:111] UnityEngine.UI.Button:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cd2a349 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cd1fec2 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cd29fbb (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdfcef3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdf76d3 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdf757b (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdf7043 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fb1bff (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e2157e250 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    0
    0x00007ff7ac308c8c (Unity) StackWalker::GetCurrentCallstack
    0x00007ff7ac311069 (Unity) StackWalker::ShowCallstack
    0x00007ff7ad7e564c (Unity) GetStacktrace
    0x00007ff7ae8a4803 (Unity) DebugStringToFile
    0x00007ff7ac49c439 (Unity) DebugLogHandler_CUSTOM_Internal_Log
    0x0000022e1cd2ae4b (Mono JIT Code) (wrapper managed-to-native) UnityEngine.DebugLogHandler:Internal_Log (UnityEngine.LogType,UnityEngine.LogOption,string,UnityEngine.Object)
    0x0000022e1cd2ad7b (Mono JIT Code) UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
    0x0000022e1cd2aac0 (Mono JIT Code) UnityEngine.Logger:Log (UnityEngine.LogType,object)
    0x0000022e1cd2a988 (Mono JIT Code) UnityEngine.Debug:Log (object)
    0x0000022e1cd2a893 (Mono JIT Code) [local.cs:35] local:LocaleSelected (int)
    0x0000022e1cd2a825 (Mono JIT Code) UnityEngine.Events.InvokableCall`1<int>:Invoke (int)
    0x0000022d74f875d9 (Mono JIT Code) UnityEngine.Events.UnityEvent`1<int>:Invoke (int)
    0x0000022d74f872ab (Mono JIT Code) [TMP_Dropdown.cs:433] TMPro.TMP_Dropdown:SetValue (int,bool)
    0x0000022d74f87153 (Mono JIT Code) [TMP_Dropdown.cs:407] TMPro.TMP_Dropdown:set_value (int)
    0x0000022e1cd4571b (Mono JIT Code) [ayarlar.cs:126] ayarlar:engSec ()
    0x0000022d74f88bf9 (Mono JIT Code) UnityEngine.Events.InvokableCall:Invoke ()
    0x0000022e1cd2a56b (Mono JIT Code) UnityEngine.Events.UnityEvent:Invoke ()
    0x0000022e1cd2a463 (Mono JIT Code) [Button.cs:69] UnityEngine.UI.Button:press ()
    0x0000022e1cd2a3a3 (Mono JIT Code) [Button.cs:111] UnityEngine.UI.Button:OnPointerClick (UnityEngine.EventSystems.PointerEventData)
    0x0000022e1cd2a349 (Mono JIT Code) [ExecuteEvents.cs:51] UnityEngine.EventSystems.ExecuteEvents:Execute (UnityEngine.EventSystems.IPointerClickHandler,UnityEngine.EventSystems.BaseEventData)
    0x0000022e1cd1fec2 (Mono JIT Code) [ExecuteEvents.cs:262] UnityEngine.EventSystems.ExecuteEvents:Execute<T_REF> (UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T_REF>)
    0x0000022e1cd29fbb (Mono JIT Code) [StandaloneInputModule.cs:189] UnityEngine.EventSystems.StandaloneInputModule:ReleaseMouse (UnityEngine.EventSystems.PointerEventData,UnityEngine.GameObject)
    0x0000022e1cdfcef3 (Mono JIT Code) [StandaloneInputModule.cs:643] UnityEngine.EventSystems.StandaloneInputModule:processMousePress (UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData)
    0x0000022e1cdf76d3 (Mono JIT Code) [StandaloneInputModule.cs:548] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent (int)
    0x0000022e1cdf757b (Mono JIT Code) [StandaloneInputModule.cs:528] UnityEngine.EventSystems.StandaloneInputModule:processMouseEvent ()
    0x0000022e1cdf7043 (Mono JIT Code) [StandaloneInputModule.cs:284] UnityEngine.EventSystems.StandaloneInputModule:process ()
    0x0000022d74fb1bff (Mono JIT Code) [EventSystem.cs:388] UnityEngine.EventSystems.EventSystem:Update ()
    0x0000022e2157e250 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
    0x00007ffd1781e0c0 (mono-2.0-bdwgc) [mini-runtime.c:2812] mono_jit_runtime_invoke
    0x00007ffd177a2902 (mono-2.0-bdwgc) [object.c:2921] do_runtime_invoke
    0x00007ffd177ab95f (mono-2.0-bdwgc) [object.c:2968] mono_runtime_invoke
    0x00007ff7ac185d94 (Unity) scripting_method_invoke
    0x00007ff7ac17e585 (Unity) ScriptingInvocation::Invoke
    0x00007ff7ac141b54 (Unity) MonoBehaviour::CallMethodIfAvailable
    0x00007ff7ac141c5c (Unity) MonoBehaviour::CallUpdateMethod
    0x00007ff7ab6230f8 (Unity) BaseBehaviourManager::CommonUpdate<BehaviourManager>
    0x00007ff7ab62d31a (Unity) BehaviourManager::Update
    0x00007ff7aba93dda (Unity) `InitPlayerLoopCallbacks'::`2'::UpdateScriptRunBehaviourUpdateRegistrator::Forward
    0x00007ff7aba74f0c (Unity) ExecutePlayerLoop
    0x00007ff7aba74fe3 (Unity) ExecutePlayerLoop
    0x00007ff7aba7bfd9 (Unity) PlayerLoop
    0x00007ff7ace8ea71 (Unity) PlayerLoopController::UpdateScene
    0x00007ff7ace8c757 (Unity) Application::TickTimer
    0x00007ff7ad7eee21 (Unity) MainMessageLoop
    0x00007ff7ad7f2eb1 (Unity) WinMain
    0x00007ff7af638fc6 (Unity) __scrt_common_main_seh
    0x00007ffd7a657c24 (KERNEL32) BaseThreadInitThunk
    0x00007ffd7ab6d4d1 (ntdll) RtlUserThreadStart

    Unloading 15 Unused Serialized files (Serialized files now loaded: 0)
    Loaded scene 'Temp/__Backupscenes/0.backup'
    Deserialize: 5.419 ms
    Integration: 19.535 ms
    Integration of assets: 0.006 ms
    Thread Wait Time: 13.538 ms
    Total Operation Time: 38.498 ms
    System memory in use before: 143.4 MB.
    System memory in use after: 143.7 MB.

    Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 4451.
    Total: 25.710400 ms (FindLiveObjects: 0.780900 ms CreateObjectMapping: 0.429400 ms MarkObjects: 24.429000 ms DeleteObjects: 0.068800 ms)

    Refresh completed in 0.016859 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 16.822ms
    Refresh completed in 0.010567 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport) scanfilter:
    RefreshProfiler: Total: 10.521ms
     
  32. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    Are you able to share the project? Theres some warnings about editor scenes being marked as addressable which im unsure about. Id need to take a look at the project to understand whats going wrong.
    Does a desktop build work?
     
  33. cyrexStudio

    cyrexStudio

    Joined:
    Jun 6, 2019
    Posts:
    8
    I dont understand, Should I take a screenshot?
    I tried to make everything in the assets addressable, I just couldn't do the scenes because when I do the scenes, the marks are removed in the "build setting" section.
     

    Attached Files:

  34. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    Those screenshots seem to be blank. Can you take a screenshot of the addressable settings?
     
  35. cyrexStudio

    cyrexStudio

    Joined:
    Jun 6, 2019
    Posts:
    8
    Ekran Alıntısı4.PNG Ekran Alıntısı3.PNG
     
  36. rroyermoraes

    rroyermoraes

    Joined:
    Oct 25, 2015
    Posts:
    5
    I'm having the same issue on my project as cyrexStudio
     
  37. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    EduardDraude likes this.
  38. EduardDraude

    EduardDraude

    Joined:
    Mar 8, 2019
    Posts:
    60
    karl_jones likes this.
  39. EKO_LX

    EKO_LX

    Joined:
    Dec 25, 2020
    Posts:
    45
    On startup of project I get log:
    The Locale 'en-US' is not available, however the parent locale 'en' is available.

    1) application run fine but that message is annoying and don't understand why that happens.

    2) But issue cause I write here is on one of my screen. I can't change language with dropdown on display. I click on English language, it doesn't check it, and language doesn't change.
    Screen Shot 2021-03-03 at 16.53.39.png
     
  40. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    This is fine. It comes from the System Locale Selector. It means that the System language is English(en-US), you dont have a English(en-US) Locale but it did find a fallback English(en). If you just want English to be picked you could remove the SystemLocale selector from the Localization Settings and set the Specific Selector to English.

    What happens when you press it? Do you have error messages?
     
  41. EKO_LX

    EKO_LX

    Joined:
    Dec 25, 2020
    Posts:
    45
    But specific language is selected.
    Screen Shot 2021-03-03 at 17.10.55.png

    Nothing happens, no errors. The thing is that works fine on other screens.
     
  42. EKO_LX

    EKO_LX

    Joined:
    Dec 25, 2020
    Posts:
    45
    Don't know, but maybe is caused by setting some localization text via script. May that have some influence to that dropdown? Because screen where it works fine, all localization texts set through inspector.
     
  43. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    Remove this
    upload_2021-3-3_13-47-40.png


    So it works for some text but not your scripts?
    Can you share the scripts?
     
  44. EKO_LX

    EKO_LX

    Joined:
    Dec 25, 2020
    Posts:
    45
  45. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
  46. EKO_LX

    EKO_LX

    Joined:
    Dec 25, 2020
    Posts:
    45
  47. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
    Im not sure I understand what your problem is?
    You want to change the selected language by script?
    You can just assign the Locale like so
    Code (csharp):
    1. LocalizationSettings.SelectedLocale = LocalizationSettings.SelectedLocale.AvailableLocales.GetLocale("en");
     
  48. EKO_LX

    EKO_LX

    Joined:
    Dec 25, 2020
    Posts:
    45
  49. karl_jones

    karl_jones

    Unity Technologies

    Joined:
    May 5, 2015
    Posts:
    8,226
  50. EKO_LX

    EKO_LX

    Joined:
    Dec 25, 2020
    Posts:
    45
    I can't share project but can show what I mean.