ETH Price: $3,009.02 (+4.45%)
Gas: 3 Gwei

Token

Daonnaki (DAO)
 

Overview

Max Total Supply

10,000 DAO

Holders

556

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Daonnaki

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Daonnaki.sol
//SPDX-License-Identifier: UNLICENSED

/*
 *  Daonnaki NFT Collection
 *  Created by NFTSociety.io
 */

pragma solidity ^0.8.17;

import "erc721a/contracts/ERC721A.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./NSClaimer.sol";

contract Daonnaki is ERC721A, Ownable, DefaultOperatorFilterer, NSClaimer {
    using Strings for uint256;
    using ECDSA for bytes32;

    uint256 public maxSupply = 10000;
    uint256 public currentSupply = 0;

    uint256 public salePrice = 0.0198 ether;
    uint256 public presalePrice = 0.0185 ether;

    //Placeholders
    address private presaleAddress = address(0xA57C2D44EB8f127CA6C43Cf0Aa1bE8800aEc7c93);
    address private wallet = address(0x8A72c401649A23DE311b8108ec7962979689d083);

    string private baseURI;
    string private notRevealedUri = "ipfs://QmcmU4Q47CQxBksyLy6jRLJ6uVcfoZNKeDwKWo5N72B3Lq";

    bool public revealed = false;
    bool public baseLocked = false;

    bool public claimOpened = false;
    bool public presaleOpened = false;
    bool public saleOpened = false;

    mapping(address => uint256) public mintLog;

    constructor()
        ERC721A("Daonnaki", "DAO")
    {
        transferOwnership(msg.sender);
        //Reserved NFTs to be claimed at any time
        currentSupply = 6209;
    }

    //Opensea Operator Filterer method overwrite
    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public payable override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
    // - - - -
    
    function withdraw() public onlyOwner {
        uint256 _balance = address( this ).balance;
        payable( wallet ).transfer( _balance );
    }

    function setWallet(address _newWallet) public onlyOwner {
        wallet = _newWallet;
    }

    function totalSupply() public view override returns (uint256) {
        return currentSupply;
    }

    function validateSignature( address _addr, bytes memory _s ) internal view returns (bool){
        bytes32 messageHash = keccak256(
            abi.encodePacked( address(this), msg.sender)
        );

        address signer = messageHash.toEthSignedMessageHash().recover(_s);

        if( _addr == signer ) {
            return true;
        } else {
            return false;
        }
    }

    /**
        Claim reserved NFTs
     */
    function claimReserved() external {
        require( 
            claimOpened, 
            "This phase has not yet started." 
        );

        require( 
            !claimLog[ msg.sender ], 
            "You have already claimed your reserved NFTs." 
        );

        require( 
            reserveLog[ msg.sender ] > 0, 
            "You don't have reserved NFTs for claim." 
        );

        uint256 _am = reserveLog[ msg.sender ];

        mintLog[ msg.sender ] += _am;
        claimLog[ msg.sender ] = true;
        claimed += _am;

        _mint( msg.sender, _am );
    }

    /**
        Presale ( Allowlist ) mint
     */
    function presaleMint(uint256 _amount, bytes calldata signature) external payable {
        //Presale opened check
        require( 
            presaleOpened, 
            "Daonnaki: Allowlist mint is not opened yet." 
        );

        //Min 1 NFT check
        require(_amount > 0, "Daonnaki: You must mint at least one NFT");

        //Check presale signature
        require(
            validateSignature(
                presaleAddress,
                signature
            ),
            "SIGNATURE_VALIDATION_FAILED"
        );

        //Price check
        require(
            msg.value >= presalePrice * _amount,
            "Daonnaki: Insufficient ETH amount sent."
        );

        uint256 supply = currentSupply;

        require(
            supply + _amount <= maxSupply,
            "Daonnaki: Mint too large, exceeding the collection supply"
        );

        mintLog[ msg.sender ] += _amount;
        currentSupply += _amount;

        _mint( msg.sender, _amount);
    }

    /**
        Phase 3 of the mint
     */
    function publicMint(uint256 _amount) external payable {
        //Public mint check
        require( 
            saleOpened, 
            "Daonnaki: Public mint is not opened yet." 
        );

        //Price check
        require(
            msg.value >= salePrice * _amount,
            "Daonnaki: Insufficient ETH amount sent."
        );

        uint256 supply = currentSupply;

        require(
            supply + _amount <= maxSupply,
            "Daonnaki: Mint too large, exceeding the collection supply"
        );

        mintLog[ msg.sender ] += _amount;
        currentSupply += _amount;

        _mint( msg.sender, _amount );
    }

    function forceMint(uint256 number, address receiver) external onlyOwner {
        uint256 supply = currentSupply;

        require(
            supply + number <= maxSupply,
            "Daonnaki: You can't mint more than max supply"
        );

        currentSupply += number;

        _mint( receiver, number );
    }

    /**
        Force-Claim reserved NFTs
     */
    function forceClaim( address _addr ) external onlyOwner {
        require( 
            !claimLog[ _addr ], 
            "Already claimed." 
        );

        require( 
            reserveLog[ _addr ] > 0, 
            "No NFTs for claim on this address." 
        );

        uint256 _am = reserveLog[ _addr ];

        mintLog[ _addr ] += _am;
        claimLog[ _addr ] = true;
        claimed += _am;

        _mint( _addr, _am );
    }

    function ownerMint(uint256 number) external onlyOwner {
        uint256 supply = currentSupply;

        require(
            supply + number <= maxSupply,
            "Daonnaki: You can't mint more than max supply"
        );

        currentSupply += number;

        _mint( msg.sender, number );
    }

    function addToReserve( address _addr, uint256 _am ) public onlyOwner { 
        uint256 supply = currentSupply;

        require(
            supply + _am <= maxSupply,
            "Daonnaki: You can't add more than max supply"
        );

        require( 
            !claimLog[ _addr ], 
            "Already claimed." 
        );

        currentSupply += _am;
        reserveLog[ _addr ] += _am;
    }

    function setSalePrice(uint256 _newPrice) public onlyOwner {
        salePrice = _newPrice;
    }
    
    function setPresalePrice(uint256 _newPrice) public onlyOwner {
        presalePrice = _newPrice;
    }

    function claimOpen() public onlyOwner { 
        claimOpened = true;
    }

    function claimStop() public onlyOwner { 
        claimOpened = false;
    }

    function saleOpen() public onlyOwner { 
        saleOpened = true;
    }
    
    function saleStop() public onlyOwner {
        saleOpened = false;
    }

    function presaleOpen() public onlyOwner {
        presaleOpened = true;
    }
    
    function presaleStop() public onlyOwner {
        presaleOpened = false;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        require( baseLocked == false, "Base URI change has been disabled permanently");

        baseURI = _newBaseURI;
    }

    //Lock base security - your nfts can never be changed.
    function lockBase() public onlyOwner {
        baseLocked = true;
    }

    // FACTORY
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721A)
        returns (string memory)
    {
        if (revealed == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = baseURI;
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(),'.json'))
                : "";
    }
 
}

File 2 of 14 : NSClaimer.sol
//SPDX-License-Identifier: UNLICENSED

/*
 *  Claim reserved NFTs 
 *  Created by NFTSociety.io
 */

pragma solidity ^0.8.17;

abstract contract NSClaimer {
    
    mapping( address => uint256 ) public reserveLog;
    mapping( address => bool ) public claimLog;
    uint256 public claimed;
    
    constructor() {
        //Init Access
        setAccess();
    }

    //AccessLog Init
    function setAccess() internal {
		reserveLog[ address(0xC7086014ABeB5C730CC75D92F7439544039ad424) ] = 30;
		reserveLog[ address(0x40E5529fc270566dD00272af0Bfa684C230cb210) ] = 50;
		reserveLog[ address(0xC405d61AaF8106F1A5242D1ccb4397acA1E689ac) ] = 6;
		reserveLog[ address(0x00D4da27deDce60F859471D8f595fDB4aE861557) ] = 25;
		reserveLog[ address(0x92fb6b5BC7f49b02E1d44c78FC5e671893F0E531) ] = 25;
		reserveLog[ address(0x9e2Ac6A3F2e8346a979cAa24fC00f8F9de8f8115) ] = 30;
		reserveLog[ address(0xf71eA5dB26888f1f38E7DE3375030f32861c0803) ] = 30;
		reserveLog[ address(0xE5d08078CA78C9B14101f16fcACbEE8818D06Bfa) ] = 51;
		reserveLog[ address(0x3C27D06a9A390b1290a124f06593fe95E0d64A93) ] = 10;
		reserveLog[ address(0x70069C30CbED62eD40Eb8813566A7a7D26A42D4C) ] = 30;
		reserveLog[ address(0x4a9b4cea73531Ebbe64922639683574104e72E4E) ] = 25;
		reserveLog[ address(0x62eF1F4b8D468863C88C8BE2c88D388f3D72D474) ] = 5;
		reserveLog[ address(0x74D7f706b26a6Fe2caE4999DFA6940f60CF8b916) ] = 15;
		reserveLog[ address(0x2Ef3f778D3032158f1bCf9c78772869339016631) ] = 15;
		reserveLog[ address(0x92b398370dda6392cf5b239561aB1bD3ba393CB6) ] = 5;
		reserveLog[ address(0x0Ad4214E4DEa19A8247b487af43Ea1410CF4c3DB) ] = 10;
		reserveLog[ address(0x00Ef8c07aEB53A3D538e6B97a662Be2b6700F9EE) ] = 25;
		reserveLog[ address(0xacCB1e0eAa4d6bB3AB8268cFa8fB08d77F082655) ] = 35;
		reserveLog[ address(0xCb61C44Dd8fC8E8d40DD17975ed43A5CA4161deE) ] = 5;
		reserveLog[ address(0xE0F6Bb10e17Ae2fEcD114d43603482fcEa5A9654) ] = 50;
		reserveLog[ address(0x474C235426E40aD6626A3E508Dc0011E023BFE43) ] = 50;
		reserveLog[ address(0x5CaA27A1Cd3351D5b9F86558A56a566DEC2f7658) ] = 40;
		reserveLog[ address(0xa54F87a652254baA2D1B39984a7E25022681fF41) ] = 5;
		reserveLog[ address(0x9a6F64645a71f0a40bEf45f21aB58F5dccaa18Ad) ] = 8;
		reserveLog[ address(0x356d581acCE55090eEaE6348c36c7a9501CD7cB9) ] = 25;
		reserveLog[ address(0x86348d8f5E3B0BF8e49e2707933d5d87CFe2119A) ] = 53;
		reserveLog[ address(0xBB6a0FBE1F1D4D7D3Df73efa4Dc2888F6dce1736) ] = 5;
		reserveLog[ address(0x777D30Db5EFC9b99bF5CA48Ce667a0EfC0c11913) ] = 20;
		reserveLog[ address(0xAb784a5081C478f518a4B804323f2ee7931df533) ] = 10;
		reserveLog[ address(0x10a348dDb0ae269eA73d9E01451eecd0a6164A28) ] = 5;
		reserveLog[ address(0xf01F2ef4A58874F00A125A6722958Cf22A76C08F) ] = 2;
		reserveLog[ address(0x321f9Bb604E21024Ff57259f09fcc5A5Fc19550B) ] = 21;
		reserveLog[ address(0x0d2958E4d38b67f2A95892F362c238A35A8cFc51) ] = 10;
		reserveLog[ address(0xb41e212b047f7A8e3961d52001ADE9413f7D0C70) ] = 35;
		reserveLog[ address(0x8B0850E5F3eb8659cBE140d8423Ccc0027DD535f) ] = 5;
		reserveLog[ address(0xC59E591a5a159a6FB9fCb4285052F4C5c2657810) ] = 33;
		reserveLog[ address(0x2125668BC6Ea43094fe06Ac2Af328E69516753fd) ] = 5;
		reserveLog[ address(0xf865C4da53B7599C1f52b3339d936420af31469d) ] = 11;
		reserveLog[ address(0x069805bEFFb3deC781aff8b71dB9357Be7ae418c) ] = 16;
		reserveLog[ address(0x80ea006315A1c8278419BED1951c4fC047581641) ] = 10;
		reserveLog[ address(0xeC303E97f025DF3947e9E901bcc06a70F9f377B4) ] = 1;
		reserveLog[ address(0x5c8aD9343c76CCE594cB3B663410DD2fa1aC0e78) ] = 110;
		reserveLog[ address(0x12ab48D6eA7Fa8aabdBB845DD71DCC7868053761) ] = 1;
		reserveLog[ address(0xAB674D86bF1943C060cF0C3D8103A09F5299599C) ] = 6;
		reserveLog[ address(0x0Dd11C2a71ca194F7bcfcac806988b580Eb3ba8A) ] = 58;
		reserveLog[ address(0x60314c86B99a2a108E5097fc2688AA1E3c30Be30) ] = 10;
		reserveLog[ address(0x7b5D04A9aab29D06F8e21eb6c957a38a760F50B4) ] = 11;
		reserveLog[ address(0x4494d7FB34930cC147131d405bB21027Aded12f4) ] = 10;
		reserveLog[ address(0xb4F3745E46f67204c072B2B33aaA2d6176463ACD) ] = 16;
		reserveLog[ address(0x081bcA4a664Cc3B440F3F6De5fEa209986056856) ] = 1;
		reserveLog[ address(0x6EDf6b0229C9A205d0D0E4f81e6a956e064ECFAa) ] = 26;
		reserveLog[ address(0x3b067DB9d9339169ad1C4A49504888441B0D9390) ] = 12;
		reserveLog[ address(0x40EfBE92D9AD4cfA8Deb52111fBCaCCD4DBd5495) ] = 1;
		reserveLog[ address(0xDd8463c7e803d6A5E8711010cFfAfd977B54f744) ] = 53;
		reserveLog[ address(0x6c2e34F61c4A9031c3c7E8059A09c381Ad340007) ] = 26;
		reserveLog[ address(0x562389B4B2b4c2123589800393D9c1c0051949C1) ] = 35;
		reserveLog[ address(0x5F4dF796b08AcAb25dc35b14e4D3Fd0b1588290e) ] = 5;
		reserveLog[ address(0xB84404f79EbeF00233E1AEdB273c67c917B8840f) ] = 5;
		reserveLog[ address(0x621C6De117f61c3D0c8eC1D6dFD3E36414202480) ] = 4;
		reserveLog[ address(0x19139f9C2420cF587E95375863121931581DBE9B) ] = 6;
		reserveLog[ address(0x083CC11901b1bB3Ab79958C386Ed3DE674ADf564) ] = 5;
		reserveLog[ address(0x0FEbC5A457F29C753B7D9BbC12e8e9f7D26b024b) ] = 1;
		reserveLog[ address(0xBF412BE283Fe1105C709f1F64d40e9f70057a305) ] = 18;
		reserveLog[ address(0x9Fef5892be1c331426aeb4E6E32AAc3718f96e87) ] = 50;
		reserveLog[ address(0xD58D449Af4832d76eD247e0b2DD80327CfE377c0) ] = 46;
		reserveLog[ address(0x9CC1126F327128Ee73175c6fD68F88a0b1F72Ac7) ] = 1;
		reserveLog[ address(0x7FDF505f1fDcCb3D1e55E06f2890871DdFfA3FBe) ] = 5;
		reserveLog[ address(0x4cBD07e1b723eC2334c5c33dFC92DA94cbF8994C) ] = 33;
		reserveLog[ address(0x728E1D2a727d14051a3787203Db3646701026315) ] = 15;
		reserveLog[ address(0x07f183E920c135A6A01f86aa64E583EF0E91164C) ] = 25;
		reserveLog[ address(0x5431c0Dce14A9FFdFfc82097538f330e6d2Cbc81) ] = 5;
		reserveLog[ address(0xe84db627dB0722d076F0f81ccf0AA0C72eB41d5d) ] = 3;
		reserveLog[ address(0x065735841E157d74Cd2D69A95d3E4C4003A76E28) ] = 15;
		reserveLog[ address(0x99EE59f6130F88113d87Cabd8A19e97D269946cf) ] = 30;
		reserveLog[ address(0x345Aa080b2ca5ed336D7FEA600153CB1C57Aa387) ] = 2;
		reserveLog[ address(0x090738F0600660206636E2E175553E4802bfC2fd) ] = 3;
		reserveLog[ address(0x2b518e05767B49dDF3C5E1B353F923A25611c0F7) ] = 6;
		reserveLog[ address(0x8575adfB4a62c2371AB87EcCa87ADE99A968F504) ] = 5;
		reserveLog[ address(0xBaA3f0f0983267D1B9847B6328eDa968Aa5cB0e5) ] = 5;
		reserveLog[ address(0xd8CE40b6f51f3df2F774f35Eaf9c9F20ad76AA5F) ] = 5;
		reserveLog[ address(0x986eAa8d5a0EC0a0f0433BBB249D15E5430CF550) ] = 10;
		reserveLog[ address(0x709A37e109D7c5b7AF637cEd53ccD2a16Cf804E6) ] = 5;
		reserveLog[ address(0xdDd1918AC0D873eb02feD2ac24251da75d983Fed) ] = 1;
		reserveLog[ address(0x08734fe979Db217d19A9963E358F7F2009e940d6) ] = 5;
		reserveLog[ address(0x651741aD4945bE1B8fEC753168DA613FC2060c01) ] = 3;
		reserveLog[ address(0x8b835e35838448a8A29Be15E926D99E9FB040822) ] = 25;
		reserveLog[ address(0xe07E2A56849F1D31233dF11710C00E5a526c59aa) ] = 5;
		reserveLog[ address(0xae4a6373198c7FF52992705178CC3d81BFB5c1bf) ] = 5;
		reserveLog[ address(0x770Ea337b0B3b5E99AdFc3474779690856afac06) ] = 30;
		reserveLog[ address(0x5fB4E2617Bdfd6c8FAe563d4cf9070b45580C305) ] = 1;
		reserveLog[ address(0x3Bcb6e863939828DD391ff5c2820E1Ee93398C17) ] = 26;
		reserveLog[ address(0x03d86EC6Ad13eef60Fa516E7ed291a2171AFBf6A) ] = 10;
		reserveLog[ address(0x3C03Fb9387524111D5528eC19B606eF22D107AC0) ] = 10;
		reserveLog[ address(0x7E7c1A3541d2ff134f755ca58512B703906f2785) ] = 6;
		reserveLog[ address(0x381C43E044f019BD1bca7CCbA3db83d756e9643C) ] = 4;
		reserveLog[ address(0xCBc6C9CeF4f3C7cbBb8Eb82A2aD60c00e631A8C1) ] = 3;
		reserveLog[ address(0x5114908f1c7B8cB43a11bdC7f1731Db0fF8e85F8) ] = 15;
		reserveLog[ address(0x25840805c7B742488f2E5566398C99d0c39A373B) ] = 4;
		reserveLog[ address(0x67C1EC6455C4e62acdaC256BE78604b9cEA50A31) ] = 1;
		reserveLog[ address(0xeCedfe638f467D4b7429f2d945b2b68bc8bdEEd7) ] = 57;
		reserveLog[ address(0xDaef2F9cDAFB8a63c309C5969a4D4E0A507143c6) ] = 1;
		reserveLog[ address(0x24a44d75938c4477900DEa8f418bC1dAfB101657) ] = 2;
		reserveLog[ address(0x1444FedEA6cD0Fd7c78fB2d0CAf803F486B86cBE) ] = 5;
		reserveLog[ address(0x1AF045428EB6c93486d359ac84ac6D1e3A0fb0E4) ] = 25;
		reserveLog[ address(0x420CBC1223e6173c084536166877d59E072dA089) ] = 6;
		reserveLog[ address(0x20687eEe454A4A8b48CBA410d67B5aa6c46fBd21) ] = 6;
		reserveLog[ address(0xF78768D71fEa7e6EdA6219609046c291FA058D7B) ] = 14;
		reserveLog[ address(0x0B9960B28759222d45e2fA059066BE3d94DA12c9) ] = 5;
		reserveLog[ address(0xB55Be226B485f1E3DB7259159780E97119a614F3) ] = 12;
		reserveLog[ address(0x659DA5D440313e21f80E55c7fBf18C704B425010) ] = 10;
		reserveLog[ address(0x056bF45a910A1713260448Fb35B87109b9B9d80B) ] = 3;
		reserveLog[ address(0xb20963d8655316bfCb649055397159B97088AaFA) ] = 1;
		reserveLog[ address(0x87E11C338fdC4053f2AC27311E032EdA29aFa974) ] = 10;
		reserveLog[ address(0x097a2D60513C377cF08041fB51847DB6A97a5d7F) ] = 6;
		reserveLog[ address(0x5DC3f17c714E3076F55849A00ed8397e9661f423) ] = 1;
		reserveLog[ address(0x1E18677d4c9391eCBbBf63A0Dc56f1B10F099f7f) ] = 5;
		reserveLog[ address(0x775ED38A7A77D35c2D8b1cd785E39902Ed2F8F3d) ] = 1;
		reserveLog[ address(0x3fE79050f920C69bC3aC67424e4005dBD0C2429b) ] = 11;
		reserveLog[ address(0x0B993B2b87828f1bCf74f74e1F97cB813A966B2b) ] = 5;
		reserveLog[ address(0x6B71F02e474a0005Ef2B4E69475Db0dB2091033d) ] = 6;
		reserveLog[ address(0x5d0A692c1b83caE90a74bcD362d626A09b44FA98) ] = 1;
		reserveLog[ address(0x0A1717bA21CEAf7c03448f6BdCE4E43a5E2D1cCD) ] = 3;
		reserveLog[ address(0x72f2658CF458C1ECF60545CC38b6766a2f723185) ] = 5;
		reserveLog[ address(0xBdFF8F94d23e4de61B12323605067FC14E3CbCd7) ] = 5;
		reserveLog[ address(0xd140d902B24E4b94c9Ed1473a7e20db8E42b5B1F) ] = 6;
		reserveLog[ address(0xBc48d0cb0f85434186b83263dcBbA6bfE79CAa10) ] = 1;
		reserveLog[ address(0x32bB91144a38f372f120225661DA947B90fda3c1) ] = 5;
		reserveLog[ address(0x397712e87cc37A8472dE68953F37d7D9C2A97099) ] = 5;
		reserveLog[ address(0xf9794B535D607DDeedFB43a31EAd3f4B2DC1612C) ] = 2;
		reserveLog[ address(0x9B52f408a3FdBCaCa3a61bB1354d287123B03Ce9) ] = 5;
		reserveLog[ address(0x41993B75bDE61E347f889cE73b0Eb7b5763c6bd7) ] = 5;
		reserveLog[ address(0xD5F3CCCF2243f6F67Ee93415Febf1a22e5fCb7EA) ] = 6;
		reserveLog[ address(0x602Ff8316a7c4387f897E92838d91C74124A5E4d) ] = 6;
		reserveLog[ address(0xf1FC52D4485BD6894B42Ad80FA1a06C427d6B410) ] = 10;
		reserveLog[ address(0xaCef6dffec76437682A63F7A8FDcF037F06B5B30) ] = 5;
		reserveLog[ address(0xeA5F6704694ffECF5A309a93fc122105B507faAF) ] = 11;
		reserveLog[ address(0xE84B803FFb156d9Fe84569cFf2eb44E94116195F) ] = 10;
		reserveLog[ address(0x623C04dd784cd3a937AB8511BbB165C872223A32) ] = 5;
		reserveLog[ address(0x61aC5784E9BD011EE2D708a2000c707eF18B4356) ] = 5;
		reserveLog[ address(0x910e909175BE35C21A97180653C8942F0669eBAe) ] = 9;
		reserveLog[ address(0x9aee6EeD675278C23CDbC6cae68A84Ec8eaDf108) ] = 1;
		reserveLog[ address(0xb0610e10a5278e5c8D6eC4FAE9C6F39eA37f1489) ] = 5;
		reserveLog[ address(0x07dbD92bf686c5b60c1Db96bB66A90bd6af556F0) ] = 1;
		reserveLog[ address(0x58538dC6fe148E1252296A2Cfe1cc61bCB34104B) ] = 26;
		reserveLog[ address(0xE210Fa629e53721f46c9B28fE13dA66bf8a1fEFf) ] = 1;
		reserveLog[ address(0x45896c9885066Fe00D1C9c95B962CD5e6579bAC5) ] = 50;
		reserveLog[ address(0x1850DFF98F726c3196351e9BaBA70e92BAdc9000) ] = 40;
		reserveLog[ address(0x2A2794F7da0c5e27F0D0621AE47237E872bf62c2) ] = 40;
		reserveLog[ address(0xF807C4a5f07452FD962e5068D4F98b9d0931C72e) ] = 40;
		reserveLog[ address(0xa2aF3d9bdA52dB53aC5fA03F996607C2A51B4FAE) ] = 30;
		reserveLog[ address(0x18aB58A1F4Ea0d873Be2F2970CB83E00103dcE43) ] = 35;
		reserveLog[ address(0x8E19CB0afe1534B66cD23c38D602ccF12bdC686A) ] = 35;
		reserveLog[ address(0x6C7C962089eE9BF42710302FC799CEbdb191327e) ] = 30;
		reserveLog[ address(0xf9cc106ebEED623eE22ED56339a894D88469f267) ] = 30;
		reserveLog[ address(0x1475acBbf626AAb0fD09c7B9D2aB87F85c3d7E14) ] = 30;
		reserveLog[ address(0x670C15E92f712583225e2430C1425622633112c6) ] = 40;
		reserveLog[ address(0x184e65b0B9d596ADce02A4B9fcbFd95d9660aC95) ] = 40;
		reserveLog[ address(0xF73cF15076259422A5dC9DBb020237b5c2045A19) ] = 30;
		reserveLog[ address(0x5f58CE5DDDfc0e170C248867d6c378d64513aa49) ] = 30;
		reserveLog[ address(0xf761b2CC7C68d0583371e3189fdD633fE70105dA) ] = 40;
		reserveLog[ address(0x03044F4367D8bEbeB261D98dA8dCaeD088FD6760) ] = 30;
		reserveLog[ address(0xd91A31a9e7f695A9a43701FA604F7C06941825f2) ] = 35;
		reserveLog[ address(0x78FE789767BaE3372cBBc2a7A47dD0A7F8b32353) ] = 30;
		reserveLog[ address(0xc19496A7Dce4fd9fc6623702303322a571a90187) ] = 40;
		reserveLog[ address(0xC6077Cd3DF4Ad9de8B1356136Fd1C14B55eA2F6d) ] = 35;
		reserveLog[ address(0x454b3697ad71299Bd539F2E057E6D21AD849d3d8) ] = 35;
		reserveLog[ address(0xF363b8D00F609E8082459E6b6f8724D6080E6fa0) ] = 40;
		reserveLog[ address(0x6E1d2C69Dde53cf94e120E426a1c3531FBF79766) ] = 40;
		reserveLog[ address(0xa4266f94758F2bb84285f8e2C6393C3d7707C60e) ] = 35;
		reserveLog[ address(0x5D7dFCBB5643717f0b36A987a3ba91cFb37E350d) ] = 30;
		reserveLog[ address(0x76568C4FB1Ed4876825bB13af439303Ba56574ba) ] = 30;
		reserveLog[ address(0x27D9064310FB02E52D5ADb4aB269aEd1dF27cb4b) ] = 30;
		reserveLog[ address(0x4449CAdadB625DDA3E3A3A422ecAe46450a0aB54) ] = 30;
		reserveLog[ address(0xD788D7F8b9A86d203F5cF86d7E54F2f058624100) ] = 35;
		reserveLog[ address(0x562Ea2E758BCCc41e0c1D2c485235fbF08237608) ] = 35;
		reserveLog[ address(0x71D01033f8ffb379935C0d0e8474f45E6f92A972) ] = 2;
		reserveLog[ address(0xA8C3cFC34f2B0ceAF622026B3017db77170A1FF5) ] = 7;
		reserveLog[ address(0x700F1523bBB4a4430860138b26606b574E417cE5) ] = 1;
		reserveLog[ address(0xC6Ac567b250b986acAE49A842Dad7865dA4be3a0) ] = 20;
		reserveLog[ address(0xBCe965Bcd3D16dc05bCB3F796a2314bC1ddFb8A3) ] = 30;
		reserveLog[ address(0x3aBaf15114858d4C7477E30Deab1F779013C9e17) ] = 50;
		reserveLog[ address(0xD67fAf0157E6576B81A083c0888b7F275cA7308c) ] = 20;
		reserveLog[ address(0x94E69Ebf630cD79C89247981FBd6ac7fbC68A300) ] = 27;
		reserveLog[ address(0xa34c2bd0D3Df7cbd371F94Ab68c5c826DFABB245) ] = 23;
		reserveLog[ address(0x60271ffBbbD4Bb382Ad4A32129D51C2DfF46e4D4) ] = 24;
		reserveLog[ address(0xA746e529E8B66C77FFC6fF7EAaA8cf0F2fB4d925) ] = 36;
		reserveLog[ address(0x9F225e7E711776f86Fc4e47FE28085d8666a2ef8) ] = 19;
		reserveLog[ address(0xAe00F3f0FE3672a4BF24646392024F8542DC1ac3) ] = 17;
		reserveLog[ address(0x7B3c88772277E5ba86E722A08E8A8e070Ed622a7) ] = 23;
		reserveLog[ address(0x887CbD3b6abEA847AE16d7e5C109366F9468A403) ] = 12;
		reserveLog[ address(0x548c79cEb69f6d02a3997FD7335C38A21dA32d69) ] = 21;
		reserveLog[ address(0x12BA6E5d7A0f7FF173007304e0Da014D9dBEE3aA) ] = 25;
		reserveLog[ address(0xc2029cb9760A5baE2A7c9de25afd85E174D55728) ] = 22;
		reserveLog[ address(0x6BDF0fe934f1e94DaA519a139ED1089BC69EE598) ] = 35;
		reserveLog[ address(0xB7515518c86620910AD1490AF64c101fD16Dc8F9) ] = 38;
		reserveLog[ address(0x4423fE89F2783fb0A8a7bA3Cc169324404A8DbF1) ] = 32;
		reserveLog[ address(0xce64b5060A48aC01e78e7d953050cE1E4b5ac351) ] = 15;
		reserveLog[ address(0x2428228000071cD44968f2b0542736BD1af47CDE) ] = 21;
		reserveLog[ address(0x138b4C10B7A091023aA87451BD9d760A8b98A8ae) ] = 18;
		reserveLog[ address(0x807428F34b2A1b8FD7363081cFFeDC53fB133743) ] = 26;
		reserveLog[ address(0xBFdf468C854EC88Ea7761C3f1AD917317eD20a75) ] = 16;
		reserveLog[ address(0xA465bcB79F887a10460537a0D2B1e2C689f743c3) ] = 33;
		reserveLog[ address(0xb0Abd5E82D81AD7A69D0cfEAD5A8e0D133717fB5) ] = 2;
		reserveLog[ address(0xa1a3331CC412fc9B4bE1f6e8E0fe2DB20775Fe42) ] = 5;
		reserveLog[ address(0xF0f1ed472A049762967788D887d0A3ccf280c460) ] = 5;
		reserveLog[ address(0x0783FD17d11589b59Ef7837803Bfb046c025C5Af) ] = 1;
		reserveLog[ address(0x0945BE11418b180Ec8DfE0447a9bE1c15FB1BeaD) ] = 16;
		reserveLog[ address(0x7a837fcA21341e78086f7022ac1e07f3c6b03240) ] = 1;
		reserveLog[ address(0xEa0bC5d9E7e7209Db6d154589EcB5A9eC834789B) ] = 5;
		reserveLog[ address(0x6E84a7EB0c34A757652A2474f4D2c73e288347c3) ] = 8;
		reserveLog[ address(0xfF0F74D6c8602c95De89F67A2799BA0B17CAd4B8) ] = 11;
		reserveLog[ address(0x5593cb346Fd6BBf2b6B7Ae06983785DdD31Cce75) ] = 7;
		reserveLog[ address(0x372344a8808Bb85560bace3b5d4aAd03A74290f7) ] = 7;
		reserveLog[ address(0x92806839C70e789a9aFDc21b53737746B1048f82) ] = 6;
		reserveLog[ address(0x412802B7fF77718A3fAe786C670e4F7E19434C88) ] = 7;
		reserveLog[ address(0x8D7E8E86b53283D3544Aeee3226Cab0a1BFAcf1c) ] = 11;
		reserveLog[ address(0x388E66fB6D609a9D434C9e44495381A0Cfc60b65) ] = 8;
		reserveLog[ address(0x94518CAE5546b20525C829f33D5e2e409672e365) ] = 14;
		reserveLog[ address(0x89cb461617A7B9a7b2BE4d528a19A9dfab8f64D2) ] = 9;
		reserveLog[ address(0x39a6454759fE3cD81edf71B2cf6C7f0CCa5b814d) ] = 7;
		reserveLog[ address(0xF02D1F90f9F05371b724467f9dB3F867A832D69f) ] = 13;
		reserveLog[ address(0xB1335c5F8947327CD1A0926A1A6891D3eb654b93) ] = 22;
		reserveLog[ address(0x238f59Ee635e1D5079Cb0407Ad6157980c69C96C) ] = 8;
		reserveLog[ address(0x86E453d8c94bc0ADC4f4B05b2b4E451e17Be8abe) ] = 9;
		reserveLog[ address(0xb0e41D26Cc795Da7220e3FBaaa0c92E6Baf65db2) ] = 6;
		reserveLog[ address(0xfB72c1a0500E18D757f722d1F71191503e937f1F) ] = 11;
		reserveLog[ address(0x41C3BD08f55a1279C3c596449eB42e00A2E86823) ] = 5;
		reserveLog[ address(0x95631A17dd0F4D19eb90Cc6A0a7e330C987a5139) ] = 6;
		reserveLog[ address(0x4Ce304754Bbd6Bfe8643ebba72Cf494ccb089d8e) ] = 8;
		reserveLog[ address(0x210DC570f8e7F0Ce80dfF902ecEc7AF2eb4b32C6) ] = 7;
		reserveLog[ address(0xe3b29c5794Ac8C9c7c9fdE346209d1927A1E7B33) ] = 9;
		reserveLog[ address(0xA9Eaa007aAE4924D650c50381b278841Ee4d4e01) ] = 12;
		reserveLog[ address(0x278868be49d73284e6415d68b8583211eE96ce1F) ] = 6;
		reserveLog[ address(0xf500006B104b34660B81d6F2Eb6eBBc1CBE2BaE3) ] = 9;
		reserveLog[ address(0x0Cb7Dbc3837Ce16661BeC77e1Db239AAA6d4F0b4) ] = 13;
		reserveLog[ address(0x817f2D50F51E448c1E9DCc82cd83259F3A5a6088) ] = 9;
		reserveLog[ address(0x70102E977B12A3269D2a7539539d7DDFe5D63b2D) ] = 9;
		reserveLog[ address(0x61D1C8059a1988725474709067D8140894545912) ] = 5;
		reserveLog[ address(0x5176BB80780a68ae0194af21Ff2D168574734638) ] = 17;
		reserveLog[ address(0x8CEe034078EADd552D0c8E6E80e45A9B3A7A5BE9) ] = 14;
		reserveLog[ address(0xdFA7ae04064eE82378b01FDe8Fcd1aE72cE957a8) ] = 7;
		reserveLog[ address(0xAe6556336374029D12C4f88813Db19D6d60AdDe7) ] = 11;
		reserveLog[ address(0xC976E311b3B4Bb244C9b4f461D4EdDc3e4B229B0) ] = 6;
		reserveLog[ address(0xFF64798F3dbEf51256f4De0a642d492B218F06c4) ] = 16;
		reserveLog[ address(0x95bC2c07928A4AfC814c7A1b6036a3C684d5F7aF) ] = 11;
		reserveLog[ address(0x4bB7EFc52778d0f5F9A3698cdaD98410da9a077c) ] = 9;
		reserveLog[ address(0xC15A3291144981E0Ae8b5444a299c201A0B08e87) ] = 12;
		reserveLog[ address(0x3C99046aA00B6e42a0Ec5858Bb2c9825cFf40A72) ] = 14;
		reserveLog[ address(0xE718419c7DFF14Fc34AAbed3fcF4533BcF816960) ] = 8;
		reserveLog[ address(0x761e3455C87ad14CBf45b1846296043e06412F1C) ] = 15;
		reserveLog[ address(0x57fED59B69e1aB098033bCAFf9E73E1861ed8a10) ] = 20;
		reserveLog[ address(0x251625D0FE5dAd9728ce575de96a92DEDc4DF987) ] = 17;
		reserveLog[ address(0xbd05A759F39330B7001618738De8acB2E556466A) ] = 14;
		reserveLog[ address(0xb36336BEB87613ffE60B28a6f94D8ab18973C10E) ] = 9;
		reserveLog[ address(0x0C319880d4296207b82F463B979b4923E5F9AD07) ] = 8;
		reserveLog[ address(0xdBA68BD903a0D989599905016450f396D82314e2) ] = 6;
		reserveLog[ address(0x49c72c829B2aa1Ae2526fAEE29461E6cb7Efe0E6) ] = 11;
		reserveLog[ address(0xbF1aE3F91EC24B5Da2d85F2bD95a9E2a0F632d47) ] = 16;
		reserveLog[ address(0xF13cD4FFFB7E8C837dC3F3Bff04D34Cac4D414f5) ] = 100;
		reserveLog[ address(0x8f643591EF13FbE21ecA5fbBf20Cb0662cae34A0) ] = 75;
		reserveLog[ address(0x3561b596790663c72E75908060d2a882D65cc48a) ] = 85;
		reserveLog[ address(0x795C9C9Dfef4cfCCbFdED3BAb98d6bC841A46534) ] = 70;
		reserveLog[ address(0xe5129a9bAafAda04C82744938DEa163fFc361Cc7) ] = 90;
		reserveLog[ address(0x3DDeD3Efa15d23A38eab0e8f155972Da1bB0AeBE) ] = 80;
		reserveLog[ address(0x56E48cad4419A8a27DE6444f5839d85bCdBAfA27) ] = 50;
		reserveLog[ address(0xA664487EAB27879d59F6162777BFb86A47bAdA68) ] = 30;
		reserveLog[ address(0x800A88d1615a7B557641F5C3C4f8d6CfC9692239) ] = 20;
		reserveLog[ address(0xc7A493935700EC98295E963bb3E27176761C4B91) ] = 5;
		reserveLog[ address(0x4AA42aEB8a3cd22A256140b41902C5e1eA9c5cd7) ] = 6;
		reserveLog[ address(0xF51F3e88923dfEFDf33A2E7cc471E27a97531783) ] = 5;
		reserveLog[ address(0xb32336B2ec1C7bE286A961b8DEE466A2B6472e91) ] = 5;
		reserveLog[ address(0x6A5B70026c432E5D12c13b5dC39f3E9F4e229C31) ] = 6;
		reserveLog[ address(0x7f3865E3F61054b357553A09D647D77959d5287b) ] = 12;
		reserveLog[ address(0xBb066a9029105b6ccC5A4d678F7C560432014D55) ] = 6;
		reserveLog[ address(0x9816DE38B33C46Ef44e7D4d0f555c171404d841E) ] = 12;
		reserveLog[ address(0x300D83Fa181010ab3bc10a0dFfE2fa7C392A84d1) ] = 6;
		reserveLog[ address(0xa5046C737847fa4eA1372c27209EffB112748cc6) ] = 7;
		reserveLog[ address(0x0a4C396BeA0170BEF5836Be1b5E2e9F0Ffab14f2) ] = 12;
		reserveLog[ address(0xCAb5aa3Cda2802cec23c0006734fF4Fe3262c4a2) ] = 13;
		reserveLog[ address(0xA7132B6E1a4DF7724B78fD956a3FD7c76b1BB86b) ] = 10;
		reserveLog[ address(0xD4D42b578E90E1b7De6c148D26394EcC092dC97A) ] = 5;
		reserveLog[ address(0xf5192AA5437646e240b5F30Ef6fcff93dC52a813) ] = 40;
		reserveLog[ address(0xA1ffDB5B6845F7bC578C9E7CdfADED4C6De76c82) ] = 50;
		reserveLog[ address(0x57DAB937AD5a3675200baA12DBED928dCD2C5acC) ] = 30;
		reserveLog[ address(0x923DE51F9BDaFc5c66fb8DeC8a27B8ae0d5688De) ] = 25;
		reserveLog[ address(0x5F79E401485c1Be93380dec4bA2c81b1D088b0eC) ] = 55;
		reserveLog[ address(0xE118436bD944108aCFEB6E4E48B0c7F67F4e5150) ] = 45;
		reserveLog[ address(0xEE679B08470218C9922dF223f2e7B0F4eb00F12e) ] = 200;
		reserveLog[ address(0xb3caedA9DED7930a5485F6a36326B789C33c6c1e) ] = 45;
		reserveLog[ address(0x2bE7cD3ad21fbDE0f3E963D13b958CFcF9fc252d) ] = 60;
		reserveLog[ address(0xA59b4038b6DB489e9f257A1ABC92D8c6F402Be23) ] = 40;
		reserveLog[ address(0xEA0f8E0b8Bb13386673827De68f64b6fFc1144B6) ] = 55;
		reserveLog[ address(0xA0224C61f8960D989dF5455F7055D9D3aCB33Be1) ] = 30;
		reserveLog[ address(0xD540254d008833463b39a9E86db5e6f0da96236f) ] = 15;
		reserveLog[ address(0x054a8371805b573BB551fd214947cC7e4DCFad12) ] = 20;
		reserveLog[ address(0x2Ad0f0D3CeE43291EfAFcC270Bd805005BDEe503) ] = 25;
		reserveLog[ address(0x330567B06781027dBab477A9e7F73f36661B0997) ] = 30;
		reserveLog[ address(0x216213236d99dFE4a76E431C93eCA1f606a051Fb) ] = 35;
		reserveLog[ address(0x2E0BB93D258922e6da25F9adA10b47fB229A5f00) ] = 10;
		reserveLog[ address(0x293aF2Dd1Cf2E75568392eE8A590881387dE5B05) ] = 10;
		reserveLog[ address(0x105a426D0A18A69addc3CE1aE6D0500E448991ef) ] = 10;
		reserveLog[ address(0x5ad9d740Abaa11aCE2a495da8A51338fab81b460) ] = 10;
		reserveLog[ address(0xBF7FD93Fe70Fd6126c6f06DfBCe4EcA9Ac09e050) ] = 15;
		reserveLog[ address(0xF88AaFAd4780Eb3b0eEFaB3aa886759acF9d82dC) ] = 15;
		reserveLog[ address(0x41eC5138ffA418A3c61eeB2BA6a03e8C17210e3D) ] = 20;
		reserveLog[ address(0x8742C30158d4889a6711A7C28C3F9eAd1A5214cA) ] = 15;
		reserveLog[ address(0x74AE243121bc550b40983315E6Db541C1dB7AB96) ] = 15;
		reserveLog[ address(0x2eAB1fC74bE243C5f5204F30A9bdEF6d6d236B95) ] = 20;
		reserveLog[ address(0xdd4b49fb97113646DEB8aaf34f462953472D6bD6) ] = 10;
		reserveLog[ address(0x351E0db8bDE58C73CB2F168Fed7fA5B65Bde7f2f) ] = 20;
		reserveLog[ address(0x116d2f18B6A410AE52631a10D4bE4CC84d8be8C6) ] = 15;
		reserveLog[ address(0xa110F3BF5B77E48BbF2Bc15717740E7BF1bD7c7c) ] = 15;
		reserveLog[ address(0x63B2bD90Ef96dbD4EA50dd933B4463d40F8E14E5) ] = 15;
		reserveLog[ address(0xf6fb5914115523ee81098047876F223E00Fc4Cdc) ] = 15;
		reserveLog[ address(0xc8c671c29aEE3E57631f3647BfC763afbaECcEef) ] = 10;
		reserveLog[ address(0x8a642f921aD4fA6f4F6CC7C51222832e74819c5e) ] = 10;
		reserveLog[ address(0xE53ab456a22d67330CA09f91EAA13d14B65D4A7A) ] = 15;
		reserveLog[ address(0x5556336191F9297d7cFA54051480d3f36b397A72) ] = 15;
		reserveLog[ address(0x5c019d29e67BeD0135845a5b747ae3E705275504) ] = 10;
		reserveLog[ address(0xF8E4d023d222De287e848F7A80e59E8746f9b28B) ] = 10;
		reserveLog[ address(0xfADA1A694fA3A39D550dd9DD5A3Efd3C42D5A29B) ] = 10;
		reserveLog[ address(0xf54DF4D46d36193170FcFDC479015DF7C6B66Fa8) ] = 10;
		reserveLog[ address(0xbF0885C44D2cAB7453ABb12aA32Cf243Ef1f687a) ] = 5;
		reserveLog[ address(0xAB39eB31402d0aC1d0d680c0BC123F6c798da42B) ] = 10;
		reserveLog[ address(0x21B9F33A7EF798594270bed7F5a497eef76C2eA8) ] = 10;
		reserveLog[ address(0x2af53963353BA3fCFaC15dF8Cde1f387f8cCC1c8) ] = 10;
		reserveLog[ address(0xf85DDb44E9790E6a03F8714f2b78E60f98372e2f) ] = 3;
		reserveLog[ address(0x0f25C5aC5cBEd4Ff15AAb4ca3639F87a453B9ab8) ] = 3;
		reserveLog[ address(0x381022d39583b052d5F0De3E137cF1998C39fb18) ] = 10;
		reserveLog[ address(0x6242DAaBadd3c08163337Cec11Db00B9a68bD149) ] = 1;
		reserveLog[ address(0x853d2a8D7c855f21b86c071F2A27055345352Ae6) ] = 100;

    }
    
}

File 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 14 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 6 of 14 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";
import {CANONICAL_CORI_SUBSCRIPTION} from "./lib/Constants.sol";
/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

File 7 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 8 of 14 : Constants.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

File 9 of 14 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
import {CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS} from "./lib/Constants.sol";
/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

File 10 of 14 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external payable;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 11 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 12 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 13 of 14 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

File 14 of 14 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_am","type":"uint256"}],"name":"addToReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimLog","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimStop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"forceClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"forceMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintLog","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reserveLog","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600c556000600d55664657febe8d8000600e556641b9a6e8584000600f5573a57c2d44eb8f127ca6c43cf0aa1be8800aec7c93601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738a72c401649a23de311b8108ec7962979689d083601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280603581526020016200cc2a6035913960139081620000f9919062007c3d565b506000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff0219169083151502179055506000601460036101000a81548160ff0219169083151502179055506000601460046101000a81548160ff0219169083151502179055503480156200018e57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f44616f6e6e616b690000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f44414f0000000000000000000000000000000000000000000000000000000000815250816002908162000223919062007c3d565b50806003908162000235919062007c3d565b50620002466200049560201b60201c565b60008190555050506200026e620002626200049a60201b60201c565b620004a260201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200046357801562000329576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002ef92919062007d69565b600060405180830381600087803b1580156200030a57600080fd5b505af11580156200031f573d6000803e3d6000fd5b5050505062000462565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620003e3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620003a992919062007d69565b600060405180830381600087803b158015620003c457600080fd5b505af1158015620003d9573d6000803e3d6000fd5b5050505062000461565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200042c919062007d96565b600060405180830381600087803b1580156200044757600080fd5b505af11580156200045c573d6000803e3d6000fd5b505050505b5b5b5050620004756200056860201b60201c565b62000486336200787260201b60201c565b611841600d8190555062007ece565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b601e6009600073c7086014abeb5c730cc75d92f7439544039ad42473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506032600960007340e5529fc270566dd00272af0bfa684c230cb21073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060066009600073c405d61aaf8106f1a5242d1ccb4397aca1e689ac73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060196009600072d4da27dedce60f859471d8f595fdb4ae86155773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506019600960007392fb6b5bc7f49b02e1d44c78fc5e671893f0e53173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e60096000739e2ac6a3f2e8346a979caa24fc00f8f9de8f811573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e6009600073f71ea5db26888f1f38e7de3375030f32861c080373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060336009600073e5d08078ca78c9b14101f16fcacbee8818d06bfa73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60096000733c27d06a9a390b1290a124f06593fe95e0d64a9373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e600960007370069c30cbed62ed40eb8813566a7a7d26a42d4c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601960096000734a9b4cea73531ebbe64922639683574104e72e4e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506005600960007362ef1f4b8d468863c88c8be2c88d388f3d72d47473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f600960007374d7f706b26a6fe2cae4999dfa6940f60cf8b91673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f60096000732ef3f778d3032158f1bcf9c7877286933901663173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506005600960007392b398370dda6392cf5b239561ab1bd3ba393cb673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60096000730ad4214e4dea19a8247b487af43ea1410cf4c3db73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060196009600072ef8c07aeb53a3d538e6b97a662be2b6700f9ee73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060236009600073accb1e0eaa4d6bb3ab8268cfa8fb08d77f08265573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073cb61c44dd8fc8e8d40dd17975ed43a5ca4161dee73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060326009600073e0f6bb10e17ae2fecd114d43603482fcea5a965473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060326009600073474c235426e40ad6626a3e508dc0011e023bfe4373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550602860096000735caa27a1cd3351d5b9f86558a56a566dec2f765873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073a54f87a652254baa2d1b39984a7e25022681ff4173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860096000739a6f64645a71f0a40bef45f21ab58f5dccaa18ad73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060196009600073356d581acce55090eeae6348c36c7a9501cd7cb973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506035600960007386348d8f5e3b0bf8e49e2707933d5d87cfe2119a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073bb6a0fbe1f1d4d7d3df73efa4dc2888f6dce173673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060146009600073777d30db5efc9b99bf5ca48ce667a0efc0c1191373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073ab784a5081c478f518a4b804323f2ee7931df53373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506005600960007310a348ddb0ae269ea73d9e01451eecd0a6164a2873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060026009600073f01f2ef4a58874f00a125a6722958cf22a76c08f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060156009600073321f9bb604e21024ff57259f09fcc5a5fc19550b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60096000730d2958e4d38b67f2a95892f362c238a35a8cfc5173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060236009600073b41e212b047f7a8e3961d52001ade9413f7d0c7073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560096000738b0850e5f3eb8659cbe140d8423ccc0027dd535f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060216009600073c59e591a5a159a6fb9fcb4285052f4c5c265781073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560096000732125668bc6ea43094fe06ac2af328e69516753fd73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b6009600073f865c4da53b7599c1f52b3339d936420af31469d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060106009600073069805beffb3dec781aff8b71db9357be7ae418c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a600960007380ea006315a1c8278419bed1951c4fc04758164173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060016009600073ec303e97f025df3947e9e901bcc06a70f9f377b473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550606e60096000735c8ad9343c76cce594cb3b663410dd2fa1ac0e7873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600960007312ab48d6ea7fa8aabdbb845dd71dcc786805376173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060066009600073ab674d86bf1943c060cf0c3d8103a09f5299599c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550603a60096000730dd11c2a71ca194f7bcfcac806988b580eb3ba8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a600960007360314c86b99a2a108e5097fc2688aa1e3c30be3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b60096000737b5d04a9aab29d06f8e21eb6c957a38a760f50b473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60096000734494d7fb34930cc147131d405bb21027aded12f473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060106009600073b4f3745e46f67204c072b2b33aaa2d6176463acd73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060016009600073081bca4a664cc3b440f3f6de5fea20998605685673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601a60096000736edf6b0229c9a205d0d0e4f81e6a956e064ecfaa73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60096000733b067db9d9339169ad1c4a49504888441b0d939073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600960007340efbe92d9ad4cfa8deb52111fbcaccd4dbd549573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060356009600073dd8463c7e803d6a5e8711010cffafd977b54f74473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601a60096000736c2e34f61c4a9031c3c7e8059a09c381ad34000773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060236009600073562389b4b2b4c2123589800393d9c1c0051949c173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560096000735f4df796b08acab25dc35b14e4d3fd0b1588290e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073b84404f79ebef00233e1aedb273c67c917b8840f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060046009600073621c6de117f61c3d0c8ec1d6dfd3e3641420248073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506006600960007319139f9c2420cf587e95375863121931581dbe9b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073083cc11901b1bb3ab79958c386ed3de674adf56473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160096000730febc5a457f29c753b7d9bbc12e8e9f7d26b024b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060126009600073bf412be283fe1105c709f1f64d40e9f70057a30573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550603260096000739fef5892be1c331426aeb4e6e32aac3718f96e8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550602e6009600073d58d449af4832d76ed247e0b2dd80327cfe377c073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160096000739cc1126f327128ee73175c6fd68f88a0b1f72ac773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560096000737fdf505f1fdccb3d1e55e06f2890871ddffa3fbe73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550602160096000734cbd07e1b723ec2334c5c33dfc92da94cbf8994c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f6009600073728e1d2a727d14051a3787203db364670102631573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506019600960007307f183e920c135a6a01f86aa64e583ef0e91164c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560096000735431c0dce14a9ffdffc82097538f330e6d2cbc8173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060036009600073e84db627db0722d076f0f81ccf0aa0c72eb41d5d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f6009600073065735841e157d74cd2d69a95d3e4c4003a76e2873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e600960007399ee59f6130f88113d87cabd8a19e97d269946cf73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060026009600073345aa080b2ca5ed336d7fea600153cb1c57aa38773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060036009600073090738f0600660206636e2e175553e4802bfc2fd73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660096000732b518e05767b49ddf3c5e1b353f923a25611c0f773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560096000738575adfb4a62c2371ab87ecca87ade99a968f50473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073baa3f0f0983267d1b9847b6328eda968aa5cb0e573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073d8ce40b6f51f3df2f774f35eaf9c9f20ad76aa5f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073986eaa8d5a0ec0a0f0433bbb249d15e5430cf55073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073709a37e109d7c5b7af637ced53ccd2a16cf804e673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060016009600073ddd1918ac0d873eb02fed2ac24251da75d983fed73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506005600960007308734fe979db217d19a9963e358f7f2009e940d673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060036009600073651741ad4945be1b8fec753168da613fc2060c0173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601960096000738b835e35838448a8a29be15e926d99e9fb04082273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073e07e2a56849f1d31233df11710c00e5a526c59aa73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073ae4a6373198c7ff52992705178cc3d81bfb5c1bf73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e6009600073770ea337b0b3b5e99adfc3474779690856afac0673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160096000735fb4e2617bdfd6c8fae563d4cf9070b45580c30573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601a60096000733bcb6e863939828dd391ff5c2820e1ee93398c1773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a600960007303d86ec6ad13eef60fa516e7ed291a2171afbf6a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60096000733c03fb9387524111d5528ec19b606ef22d107ac073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660096000737e7c1a3541d2ff134f755ca58512b703906f278573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060046009600073381c43e044f019bd1bca7ccba3db83d756e9643c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060036009600073cbc6c9cef4f3c7cbbb8eb82a2ad60c00e631a8c173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f60096000735114908f1c7b8cb43a11bdc7f1731db0ff8e85f873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506004600960007325840805c7b742488f2e5566398c99d0c39a373b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600960007367c1ec6455c4e62acdac256be78604b9cea50a3173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060396009600073ecedfe638f467d4b7429f2d945b2b68bc8bdeed773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060016009600073daef2f9cdafb8a63c309c5969a4d4e0a507143c673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600960007324a44d75938c4477900dea8f418bc1dafb10165773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560096000731444fedea6cd0fd7c78fb2d0caf803f486b86cbe73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601960096000731af045428eb6c93486d359ac84ac6d1e3a0fb0e473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060066009600073420cbc1223e6173c084536166877d59e072da08973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506006600960007320687eee454a4a8b48cba410d67b5aa6c46fbd2173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600e6009600073f78768d71fea7e6eda6219609046c291fa058d7b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560096000730b9960b28759222d45e2fa059066be3d94da12c973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c6009600073b55be226b485f1e3db7259159780e97119a614f373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073659da5d440313e21f80e55c7fbf18c704b42501073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060036009600073056bf45a910a1713260448fb35b87109b9b9d80b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060016009600073b20963d8655316bfcb649055397159b97088aafa73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a600960007387e11c338fdc4053f2ac27311e032eda29afa97473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060066009600073097a2d60513c377cf08041fb51847db6a97a5d7f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160096000735dc3f17c714e3076f55849a00ed8397e9661f42373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560096000731e18677d4c9391ecbbbf63a0dc56f1b10f099f7f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060016009600073775ed38a7a77d35c2d8b1cd785e39902ed2f8f3d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b60096000733fe79050f920c69bc3ac67424e4005dbd0c2429b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560096000730b993b2b87828f1bcf74f74e1f97cb813a966b2b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660096000736b71f02e474a0005ef2b4e69475db0db2091033d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160096000735d0a692c1b83cae90a74bcd362d626a09b44fa9873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600360096000730a1717ba21ceaf7c03448f6bdce4e43a5e2d1ccd73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506005600960007372f2658cf458c1ecf60545cc38b6766a2f72318573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073bdff8f94d23e4de61b12323605067fc14e3cbcd773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060066009600073d140d902b24e4b94c9ed1473a7e20db8e42b5b1f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060016009600073bc48d0cb0f85434186b83263dcbba6bfe79caa1073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506005600960007332bb91144a38f372f120225661da947b90fda3c173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073397712e87cc37a8472de68953f37d7d9c2a9709973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060026009600073f9794b535d607ddeedfb43a31ead3f4b2dc1612c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560096000739b52f408a3fdbcaca3a61bb1354d287123b03ce973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506005600960007341993b75bde61e347f889ce73b0eb7b5763c6bd773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060066009600073d5f3cccf2243f6f67ee93415febf1a22e5fcb7ea73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060066009600073602ff8316a7c4387f897e92838d91c74124a5e4d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073f1fc52d4485bd6894b42ad80fa1a06c427d6b41073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073acef6dffec76437682a63f7a8fdcf037f06b5b3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b6009600073ea5f6704694ffecf5a309a93fc122105b507faaf73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073e84b803ffb156d9fe84569cff2eb44e94116195f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073623c04dd784cd3a937ab8511bbb165c872223a3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506005600960007361ac5784e9bd011ee2d708a2000c707ef18b435673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600980600073910e909175be35c21a97180653c8942f0669ebae73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160096000739aee6eed675278c23cdbc6cae68a84ec8eadf10873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073b0610e10a5278e5c8d6ec4fae9c6f39ea37f148973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600960007307dbd92bf686c5b60c1db96bb66a90bd6af556f073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601a600960007358538dc6fe148e1252296a2cfe1cc61bcb34104b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060016009600073e210fa629e53721f46c9b28fe13da66bf8a1feff73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506032600960007345896c9885066fe00d1c9c95b962cd5e6579bac573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550602860096000731850dff98f726c3196351e9baba70e92badc900073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550602860096000732a2794f7da0c5e27f0d0621ae47237e872bf62c273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060286009600073f807c4a5f07452fd962e5068d4f98b9d0931c72e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e6009600073a2af3d9bda52db53ac5fa03f996607c2a51b4fae73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506023600960007318ab58a1f4ea0d873be2f2970cb83e00103dce4373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550602360096000738e19cb0afe1534b66cd23c38d602ccf12bdc686a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e60096000736c7c962089ee9bf42710302fc799cebdb191327e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e6009600073f9cc106ebeed623ee22ed56339a894d88469f26773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e60096000731475acbbf626aab0fd09c7b9d2ab87f85c3d7e1473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060286009600073670c15e92f712583225e2430c1425622633112c673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060286009600073184e65b0b9d596adce02a4b9fcbfd95d9660ac9573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e6009600073f73cf15076259422a5dc9dbb020237b5c2045a1973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e60096000735f58ce5dddfc0e170c248867d6c378d64513aa4973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060286009600073f761b2cc7c68d0583371e3189fdd633fe70105da73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e600960007303044f4367d8bebeb261d98da8dcaed088fd676073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060236009600073d91a31a9e7f695a9a43701fa604f7c06941825f273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e600960007378fe789767bae3372cbbc2a7a47dd0a7f8b3235373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060286009600073c19496a7dce4fd9fc6623702303322a571a9018773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060236009600073c6077cd3df4ad9de8b1356136fd1c14b55ea2f6d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060236009600073454b3697ad71299bd539f2e057e6d21ad849d3d873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060286009600073f363b8d00f609e8082459e6b6f8724d6080e6fa073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550602860096000736e1d2c69dde53cf94e120e426a1c3531fbf7976673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060236009600073a4266f94758f2bb84285f8e2c6393c3d7707c60e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e60096000735d7dfcbb5643717f0b36a987a3ba91cfb37e350d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e600960007376568c4fb1ed4876825bb13af439303ba56574ba73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e600960007327d9064310fb02e52d5adb4ab269aed1df27cb4b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e60096000734449cadadb625dda3e3a3a422ecae46450a0ab5473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060236009600073d788d7f8b9a86d203f5cf86d7e54f2f05862410073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060236009600073562ea2e758bccc41e0c1d2c485235fbf0823760873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600960007371d01033f8ffb379935c0d0e8474f45e6f92a97273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060076009600073a8c3cfc34f2b0ceaf622026b3017db77170a1ff573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060016009600073700f1523bbb4a4430860138b26606b574e417ce573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060146009600073c6ac567b250b986acae49a842dad7865da4be3a073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e6009600073bce965bcd3d16dc05bcb3f796a2314bc1ddfb8a373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550603260096000733abaf15114858d4c7477e30deab1f779013c9e1773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060146009600073d67faf0157e6576b81a083c0888b7f275ca7308c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601b600960007394e69ebf630cd79c89247981fbd6ac7fbc68a30073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060176009600073a34c2bd0d3df7cbd371f94ab68c5c826dfabb24573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506018600960007360271ffbbbd4bb382ad4a32129d51c2dff46e4d473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060246009600073a746e529e8b66c77ffc6ff7eaaa8cf0f2fb4d92573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601360096000739f225e7e711776f86fc4e47fe28085d8666a2ef873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060116009600073ae00f3f0fe3672a4bf24646392024f8542dc1ac373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601760096000737b3c88772277e5ba86e722a08e8a8e070ed622a773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c6009600073887cbd3b6abea847ae16d7e5c109366f9468a40373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060156009600073548c79ceb69f6d02a3997fd7335c38a21da32d6973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506019600960007312ba6e5d7a0f7ff173007304e0da014d9dbee3aa73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060166009600073c2029cb9760a5bae2a7c9de25afd85e174d5572873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550602360096000736bdf0fe934f1e94daa519a139ed1089bc69ee59873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060266009600073b7515518c86620910ad1490af64c101fd16dc8f973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550602060096000734423fe89f2783fb0a8a7ba3cc169324404a8dbf173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f6009600073ce64b5060a48ac01e78e7d953050ce1e4b5ac35173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601560096000732428228000071cd44968f2b0542736bd1af47cde73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060126009600073138b4c10b7a091023aa87451bd9d760a8b98a8ae73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601a6009600073807428f34b2a1b8fd7363081cffedc53fb13374373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060106009600073bfdf468c854ec88ea7761c3f1ad917317ed20a7573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060216009600073a465bcb79f887a10460537a0d2b1e2c689f743c373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060026009600073b0abd5e82d81ad7a69d0cfead5a8e0d133717fb573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073a1a3331cc412fc9b4be1f6e8e0fe2db20775fe4273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073f0f1ed472a049762967788d887d0a3ccf280c46073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160096000730783fd17d11589b59ef7837803bfb046c025c5af73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060096000730945be11418b180ec8dfe0447a9be1c15fb1bead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160096000737a837fca21341e78086f7022ac1e07f3c6b0324073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073ea0bc5d9e7e7209db6d154589ecb5a9ec834789b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860096000736e84a7eb0c34a757652a2474f4d2c73e288347c373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b6009600073ff0f74d6c8602c95de89f67a2799ba0b17cad4b873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760096000735593cb346fd6bbf2b6b7ae06983785ddd31cce7573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060076009600073372344a8808bb85560bace3b5d4aad03a74290f773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506006600960007392806839c70e789a9afdc21b53737746b1048f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060076009600073412802b7ff77718a3fae786c670e4f7e19434c8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b60096000738d7e8e86b53283d3544aeee3226cab0a1bfacf1c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060086009600073388e66fb6d609a9d434c9e44495381a0cfc60b6573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600e600960007394518cae5546b20525c829f33d5e2e409672e36573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060098060007389cb461617a7b9a7b2be4d528a19a9dfab8f64d273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506007600960007339a6454759fe3cd81edf71b2cf6c7f0cca5b814d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d6009600073f02d1f90f9f05371b724467f9db3f867a832d69f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060166009600073b1335c5f8947327cd1a0926a1a6891d3eb654b9373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060086009600073238f59ee635e1d5079cb0407ad6157980c69c96c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060098060007386e453d8c94bc0adc4f4b05b2b4e451e17be8abe73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060066009600073b0e41d26cc795da7220e3fbaaa0c92e6baf65db273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b6009600073fb72c1a0500e18d757f722d1f71191503e937f1f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506005600960007341c3bd08f55a1279c3c596449eb42e00a2e8682373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506006600960007395631a17dd0f4d19eb90cc6a0a7e330c987a513973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860096000734ce304754bbd6bfe8643ebba72cf494ccb089d8e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060076009600073210dc570f8e7f0ce80dff902ecec7af2eb4b32c673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600980600073e3b29c5794ac8c9c7c9fde346209d1927a1e7b3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c6009600073a9eaa007aae4924d650c50381b278841ee4d4e0173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060066009600073278868be49d73284e6415d68b8583211ee96ce1f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600980600073f500006b104b34660b81d6f2eb6ebbc1cbe2bae373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d60096000730cb7dbc3837ce16661bec77e1db239aaa6d4f0b473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600980600073817f2d50f51e448c1e9dcc82cd83259f3a5a608873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060098060007370102e977b12a3269d2a7539539d7ddfe5d63b2d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506005600960007361d1c8059a1988725474709067d814089454591273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601160096000735176bb80780a68ae0194af21ff2d16857473463873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600e60096000738cee034078eadd552d0c8e6e80e45a9b3a7a5be973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060076009600073dfa7ae04064ee82378b01fde8fcd1ae72ce957a873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b6009600073ae6556336374029d12c4f88813db19d6d60adde773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060066009600073c976e311b3b4bb244c9b4f461d4eddc3e4b229b073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060106009600073ff64798f3dbef51256f4de0a642d492b218f06c473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b600960007395bc2c07928a4afc814c7a1b6036a3c684d5f7af73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506009806000734bb7efc52778d0f5f9a3698cdad98410da9a077c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c6009600073c15a3291144981e0ae8b5444a299c201a0b08e8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600e60096000733c99046aa00b6e42a0ec5858bb2c9825cff40a7273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060086009600073e718419c7dff14fc34aabed3fcf4533bcf81696073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f6009600073761e3455c87ad14cbf45b1846296043e06412f1c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506014600960007357fed59b69e1ab098033bcaff9e73e1861ed8a1073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060116009600073251625d0fe5dad9728ce575de96a92dedc4df98773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600e6009600073bd05a759f39330b7001618738de8acb2e556466a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600980600073b36336beb87613ffe60b28a6f94d8ab18973c10e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860096000730c319880d4296207b82f463b979b4923e5f9ad0773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060066009600073dba68bd903a0d989599905016450f396d82314e273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b600960007349c72c829b2aa1ae2526faee29461e6cb7efe0e673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060106009600073bf1ae3f91ec24b5da2d85f2bd95a9e2a0f632d4773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060646009600073f13cd4fffb7e8c837dc3f3bff04d34cac4d414f573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550604b60096000738f643591ef13fbe21eca5fbbf20cb0662cae34a073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550605560096000733561b596790663c72e75908060d2a882d65cc48a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060466009600073795c9c9dfef4cfccbfded3bab98d6bc841a4653473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550605a6009600073e5129a9baafada04c82744938dea163ffc361cc773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550605060096000733dded3efa15d23a38eab0e8f155972da1bb0aebe73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506032600960007356e48cad4419a8a27de6444f5839d85bcdbafa2773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e6009600073a664487eab27879d59f6162777bfb86a47bada6873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060146009600073800a88d1615a7b557641f5c3c4f8d6cfc969223973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073c7a493935700ec98295e963bb3e27176761c4b9173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660096000734aa42aeb8a3cd22a256140b41902c5e1ea9c5cd773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073f51f3e88923dfefdf33a2e7cc471e27a9753178373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073b32336b2ec1c7be286a961b8dee466a2b6472e9173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660096000736a5b70026c432e5d12c13b5dc39f3e9f4e229c3173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60096000737f3865e3f61054b357553a09d647d77959d5287b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060066009600073bb066a9029105b6ccc5a4d678f7c560432014d5573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60096000739816de38b33c46ef44e7d4d0f555c171404d841e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060066009600073300d83fa181010ab3bc10a0dffe2fa7c392a84d173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060076009600073a5046c737847fa4ea1372c27209effb112748cc673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60096000730a4c396bea0170bef5836be1b5e2e9f0ffab14f273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d6009600073cab5aa3cda2802cec23c0006734ff4fe3262c4a273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073a7132b6e1a4df7724b78fd956a3fd7c76b1bb86b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073d4d42b578e90e1b7de6c148d26394ecc092dc97a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060286009600073f5192aa5437646e240b5f30ef6fcff93dc52a81373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060326009600073a1ffdb5b6845f7bc578c9e7cdfaded4c6de76c8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e600960007357dab937ad5a3675200baa12dbed928dcd2c5acc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060196009600073923de51f9bdafc5c66fb8dec8a27b8ae0d5688de73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550603760096000735f79e401485c1be93380dec4ba2c81b1d088b0ec73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550602d6009600073e118436bd944108acfeb6e4e48b0c7f67f4e515073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060c86009600073ee679b08470218c9922df223f2e7b0f4eb00f12e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550602d6009600073b3caeda9ded7930a5485f6a36326b789c33c6c1e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550603c60096000732be7cd3ad21fbde0f3e963d13b958cfcf9fc252d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060286009600073a59b4038b6db489e9f257a1abc92d8c6f402be2373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060376009600073ea0f8e0b8bb13386673827de68f64b6ffc1144b673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e6009600073a0224c61f8960d989df5455f7055d9d3acb33be173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f6009600073d540254d008833463b39a9e86db5e6f0da96236f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060146009600073054a8371805b573bb551fd214947cc7e4dcfad1273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601960096000732ad0f0d3cee43291efafcc270bd805005bdee50373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601e6009600073330567b06781027dbab477a9e7f73f36661b099773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060236009600073216213236d99dfe4a76e431c93eca1f606a051fb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60096000732e0bb93d258922e6da25f9ada10b47fb229a5f0073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073293af2dd1cf2e75568392ee8a590881387de5b0573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073105a426d0a18a69addc3ce1ae6d0500e448991ef73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60096000735ad9d740abaa11ace2a495da8a51338fab81b46073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f6009600073bf7fd93fe70fd6126c6f06dfbce4eca9ac09e05073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f6009600073f88aafad4780eb3b0eefab3aa886759acf9d82dc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506014600960007341ec5138ffa418a3c61eeb2ba6a03e8c17210e3d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f60096000738742c30158d4889a6711a7c28c3f9ead1a5214ca73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f600960007374ae243121bc550b40983315e6db541c1db7ab9673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601460096000732eab1fc74be243c5f5204f30a9bdef6d6d236b9573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073dd4b49fb97113646deb8aaf34f462953472d6bd673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060146009600073351e0db8bde58c73cb2f168fed7fa5b65bde7f2f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f6009600073116d2f18b6a410ae52631a10d4be4cc84d8be8c673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f6009600073a110f3bf5b77e48bbf2bc15717740e7bf1bd7c7c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f600960007363b2bd90ef96dbd4ea50dd933b4463d40f8e14e573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f6009600073f6fb5914115523ee81098047876f223e00fc4cdc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073c8c671c29aee3e57631f3647bfc763afbaecceef73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60096000738a642f921ad4fa6f4f6cc7c51222832e74819c5e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f6009600073e53ab456a22d67330ca09f91eaa13d14b65d4a7a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f60096000735556336191f9297d7cfa54051480d3f36b397a7273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60096000735c019d29e67bed0135845a5b747ae3e70527550473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073f8e4d023d222de287e848f7a80e59e8746f9b28b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073fada1a694fa3a39d550dd9dd5a3efd3c42d5a29b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073f54df4d46d36193170fcfdc479015df7c6b66fa873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056009600073bf0885c44d2cab7453abb12aa32cf243ef1f687a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073ab39eb31402d0ac1d0d680c0bc123f6c798da42b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a600960007321b9f33a7ef798594270bed7f5a497eef76c2ea873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60096000732af53963353ba3fcfac15df8cde1f387f8ccc1c873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060036009600073f85ddb44e9790e6a03f8714f2b78e60f98372e2f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600360096000730f25c5ac5cbed4ff15aab4ca3639f87a453b9ab873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6009600073381022d39583b052d5f0de3e137cf1998c39fb1873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160096000736242daabadd3c08163337cec11db00b9a68bd14973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060646009600073853d2a8d7c855f21b86c071f2a27055345352ae673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b620078826200790860201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620078f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620078eb9062007e3a565b60405180910390fd5b6200790581620004a260201b60201c565b50565b620079186200049a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200793e6200799960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462007997576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200798e9062007eac565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062007a4557607f821691505b60208210810362007a5b5762007a5a620079fd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262007ac57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262007a86565b62007ad1868362007a86565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062007b1e62007b1862007b128462007ae9565b62007af3565b62007ae9565b9050919050565b6000819050919050565b62007b3a8362007afd565b62007b5262007b498262007b25565b84845462007a93565b825550505050565b600090565b62007b6962007b5a565b62007b7681848462007b2f565b505050565b5b8181101562007b9e5762007b9260008262007b5f565b60018101905062007b7c565b5050565b601f82111562007bed5762007bb78162007a61565b62007bc28462007a76565b8101602085101562007bd2578190505b62007bea62007be18562007a76565b83018262007b7b565b50505b505050565b600082821c905092915050565b600062007c126000198460080262007bf2565b1980831691505092915050565b600062007c2d838362007bff565b9150826002028217905092915050565b62007c4882620079c3565b67ffffffffffffffff81111562007c645762007c63620079ce565b5b62007c70825462007a2c565b62007c7d82828562007ba2565b600060209050601f83116001811462007cb5576000841562007ca0578287015190505b62007cac858262007c1f565b86555062007d1c565b601f19841662007cc58662007a61565b60005b8281101562007cef5784890151825560018201915060208501945060208101905062007cc8565b8683101562007d0f578489015162007d0b601f89168262007bff565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062007d518262007d24565b9050919050565b62007d638162007d44565b82525050565b600060408201905062007d80600083018562007d58565b62007d8f602083018462007d58565b9392505050565b600060208201905062007dad600083018462007d58565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062007e2260268362007db3565b915062007e2f8262007dc4565b604082019050919050565b6000602082019050818103600083015262007e558162007e13565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062007e9460208362007db3565b915062007ea18262007e5c565b602082019050919050565b6000602082019050818103600083015262007ec78162007e85565b9050919050565b614d4c8062007ede6000396000f3fe6080604052600436106102fe5760003560e01c80637b08261011610190578063c87b56dd116100dc578063f19e75d411610095578063f51f96dd1161006f578063f51f96dd14610a66578063f5b9846514610a91578063fd24a85414610ace578063fe059c4e14610aea576102fe565b8063f19e75d4146109eb578063f2c4ce1e14610a14578063f2fde38b14610a3d576102fe565b8063c87b56dd146108db578063cace9d2514610918578063d5abeb011461092f578063deaa59df1461095a578063e834a83414610983578063e985e9c5146109ae576102fe565b806395d89b4111610149578063a475b5dd11610123578063a475b5dd1461087a578063ac9e853814610891578063b88d4fde146108a8578063bee6348a146108c4576102fe565b806395d89b411461080f57806399288dbb1461083a578063a22cb46514610851576102fe565b80637b082610146107115780638074be981461073c5780638078059c146107655780638da5cb5b1461077c57806394396a84146107a75780639535ca69146107e4576102fe565b80633ccfd60b1161024f57806355f804b311610208578063639a9a67116101e2578063639a9a671461066757806370a0823114610692578063715018a6146106cf578063771282f6146106e6576102fe565b806355f804b3146105d857806362717468146106015780636352211e1461062a576102fe565b80633ccfd60b146104fb57806341f434341461051257806342842e0e1461053d57806348c27a16146105595780634b8bcb581461059657806351830227146105ad576102fe565b806312160c25116102bc5780631c03ceb5116102965780631c03ceb51461048357806323b872dd1461049a5780632db11544146104b65780633549345e146104d2576102fe565b806312160c251461040657806318160ddd1461042f5780631919fed71461045a576102fe565b80620e7fa81461030357806301ffc9a71461032e578063036a7a191461036b57806306fdde0314610382578063081812fc146103ad578063095ea7b3146103ea575b600080fd5b34801561030f57600080fd5b50610318610b15565b60405161032591906133c2565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613449565b610b1b565b6040516103629190613491565b60405180910390f35b34801561037757600080fd5b50610380610bad565b005b34801561038e57600080fd5b50610397610e23565b6040516103a4919061353c565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf919061358a565b610eb5565b6040516103e191906135f8565b60405180910390f35b61040460048036038101906103ff919061363f565b610f34565b005b34801561041257600080fd5b5061042d6004803603810190610428919061367f565b610f4d565b005b34801561043b57600080fd5b5061044461117d565b60405161045191906133c2565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c919061358a565b611187565b005b34801561048f57600080fd5b50610498611199565b005b6104b460048036038101906104af91906136ac565b6111be565b005b6104d060048036038101906104cb919061358a565b61120d565b005b3480156104de57600080fd5b506104f960048036038101906104f4919061358a565b611380565b005b34801561050757600080fd5b50610510611392565b005b34801561051e57600080fd5b5061052761140b565b604051610534919061375e565b60405180910390f35b610557600480360381019061055291906136ac565b61141d565b005b34801561056557600080fd5b50610580600480360381019061057b919061367f565b61146c565b60405161058d9190613491565b60405180910390f35b3480156105a257600080fd5b506105ab61148c565b005b3480156105b957600080fd5b506105c26114b1565b6040516105cf9190613491565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa91906138ae565b6114c4565b005b34801561060d57600080fd5b506106286004803603810190610623919061363f565b611535565b005b34801561063657600080fd5b50610651600480360381019061064c919061358a565b611695565b60405161065e91906135f8565b60405180910390f35b34801561067357600080fd5b5061067c6116a7565b6040516106899190613491565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b4919061367f565b6116ba565b6040516106c691906133c2565b60405180910390f35b3480156106db57600080fd5b506106e4611772565b005b3480156106f257600080fd5b506106fb611786565b60405161070891906133c2565b60405180910390f35b34801561071d57600080fd5b5061072661178c565b6040516107339190613491565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e91906138f7565b61179f565b005b34801561077157600080fd5b5061077a611826565b005b34801561078857600080fd5b5061079161184b565b60405161079e91906135f8565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c9919061367f565b611875565b6040516107db91906133c2565b60405180910390f35b3480156107f057600080fd5b506107f961188d565b6040516108069190613491565b60405180910390f35b34801561081b57600080fd5b506108246118a0565b604051610831919061353c565b60405180910390f35b34801561084657600080fd5b5061084f611932565b005b34801561085d57600080fd5b5061087860048036038101906108739190613963565b611957565b005b34801561088657600080fd5b5061088f611970565b005b34801561089d57600080fd5b506108a6611995565b005b6108c260048036038101906108bd9190613a44565b6119ba565b005b3480156108d057600080fd5b506108d9611a0b565b005b3480156108e757600080fd5b5061090260048036038101906108fd919061358a565b611a30565b60405161090f919061353c565b60405180910390f35b34801561092457600080fd5b5061092d611bc0565b005b34801561093b57600080fd5b50610944611be5565b60405161095191906133c2565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c919061367f565b611beb565b005b34801561098f57600080fd5b50610998611c37565b6040516109a591906133c2565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d09190613ac7565b611c3d565b6040516109e29190613491565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d919061358a565b611cd1565b005b348015610a2057600080fd5b50610a3b6004803603810190610a3691906138ae565b611d57565b005b348015610a4957600080fd5b50610a646004803603810190610a5f919061367f565b611d72565b005b348015610a7257600080fd5b50610a7b611df5565b604051610a8891906133c2565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab3919061367f565b611dfb565b604051610ac591906133c2565b60405180910390f35b610ae86004803603810190610ae39190613b67565b611e13565b005b348015610af657600080fd5b50610aff61207a565b604051610b0c9190613491565b60405180910390f35b600f5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b601460029054906101000a900460ff16610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390613c13565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613ca5565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290613d37565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d9e9190613d86565b925050819055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600b6000828254610e0f9190613d86565b92505081905550610e20338261208d565b50565b606060028054610e3290613de9565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5e90613de9565b8015610eab5780601f10610e8057610100808354040283529160200191610eab565b820191906000526020600020905b815481529060010190602001808311610e8e57829003601f168201915b5050505050905090565b6000610ec082612248565b610ef6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610f3e816122a7565b610f4883836123a4565b505050565b610f556124e8565b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990613e66565b60405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b90613ef8565b60405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110f79190613d86565b925050819055506001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600b60008282546111689190613d86565b92505081905550611179828261208d565b5050565b6000600d54905090565b61118f6124e8565b80600e8190555050565b6111a16124e8565b6001601460016101000a81548160ff021916908315150217905550565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111fc576111fb336122a7565b5b611207848484612566565b50505050565b601460049054906101000a900460ff1661125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390613f8a565b60405180910390fd5b80600e5461126a9190613faa565b3410156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a39061405e565b60405180910390fd5b6000600d549050600c5482826112c29190613d86565b1115611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa906140f0565b60405180910390fd5b81601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113529190613d86565b9250508190555081600d600082825461136b9190613d86565b9250508190555061137c338361208d565b5050565b6113886124e8565b80600f8190555050565b61139a6124e8565b6000479050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611407573d6000803e3d6000fd5b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461145b5761145a336122a7565b5b611466848484612888565b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6114946124e8565b6001601460026101000a81548160ff021916908315150217905550565b601460009054906101000a900460ff1681565b6114cc6124e8565b60001515601460019054906101000a900460ff16151514611522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151990614182565b60405180910390fd5b80601290816115319190614344565b5050565b61153d6124e8565b6000600d549050600c5482826115539190613d86565b1115611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90614488565b60405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613e66565b60405180910390fd5b81600d60008282546116339190613d86565b9250508190555081600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116899190613d86565b92505081905550505050565b60006116a0826128a8565b9050919050565b601460049054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611721576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61177a6124e8565b6117846000612974565b565b600d5481565b601460019054906101000a900460ff1681565b6117a76124e8565b6000600d549050600c5483826117bd9190613d86565b11156117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f59061451a565b60405180910390fd5b82600d60008282546118109190613d86565b92505081905550611821828461208d565b505050565b61182e6124e8565b6000601460046101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60156020528060005260406000206000915090505481565b601460029054906101000a900460ff1681565b6060600380546118af90613de9565b80601f01602080910402602001604051908101604052809291908181526020018280546118db90613de9565b80156119285780601f106118fd57610100808354040283529160200191611928565b820191906000526020600020905b81548152906001019060200180831161190b57829003601f168201915b5050505050905090565b61193a6124e8565b6001601460046101000a81548160ff021916908315150217905550565b81611961816122a7565b61196b8383612a3a565b505050565b6119786124e8565b6001601460006101000a81548160ff021916908315150217905550565b61199d6124e8565b6000601460026101000a81548160ff021916908315150217905550565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119f8576119f7336122a7565b5b611a0485858585612b45565b5050505050565b611a136124e8565b6001601460036101000a81548160ff021916908315150217905550565b606060001515601460009054906101000a900460ff16151503611adf5760138054611a5a90613de9565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8690613de9565b8015611ad35780601f10611aa857610100808354040283529160200191611ad3565b820191906000526020600020905b815481529060010190602001808311611ab657829003601f168201915b50505050509050611bbb565b600060128054611aee90613de9565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1a90613de9565b8015611b675780601f10611b3c57610100808354040283529160200191611b67565b820191906000526020600020905b815481529060010190602001808311611b4a57829003601f168201915b505050505090506000815111611b8c5760405180602001604052806000815250611bb7565b80611b9684612bb8565b604051602001611ba79291906145c2565b6040516020818303038152906040525b9150505b919050565b611bc86124e8565b6000601460036101000a81548160ff021916908315150217905550565b600c5481565b611bf36124e8565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cd96124e8565b6000600d549050600c548282611cef9190613d86565b1115611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d279061451a565b60405180910390fd5b81600d6000828254611d429190613d86565b92505081905550611d53338361208d565b5050565b611d5f6124e8565b8060139081611d6e9190614344565b5050565b611d7a6124e8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de090614663565b60405180910390fd5b611df281612974565b50565b600e5481565b60096020528060005260406000206000915090505481565b601460039054906101000a900460ff16611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e59906146f5565b60405180910390fd5b60008311611ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9c90614787565b60405180910390fd5b611f15601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612c86565b611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b906147f3565b60405180910390fd5b82600f54611f629190613faa565b341015611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b9061405e565b60405180910390fd5b6000600d549050600c548482611fba9190613d86565b1115611ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff2906140f0565b60405180910390fd5b83601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461204a9190613d86565b9250508190555083600d60008282546120639190613d86565b92505081905550612074338561208d565b50505050565b601460039054906101000a900460ff1681565b600080549050600082036120cd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120da6000848385612d1e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612151836121426000866000612d24565b61214b85612d4c565b17612d5c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121f257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121b7565b506000820361222d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122436000848385612d87565b505050565b600081612253612d8d565b11158015612262575060005482105b80156122a0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156123a1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161231e929190614813565b602060405180830381865afa15801561233b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235f9190614851565b6123a057806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161239791906135f8565b60405180910390fd5b5b50565b60006123af82611695565b90508073ffffffffffffffffffffffffffffffffffffffff166123d0612d92565b73ffffffffffffffffffffffffffffffffffffffff1614612433576123fc816123f7612d92565b611c3d565b612432576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6124f0612d9a565b73ffffffffffffffffffffffffffffffffffffffff1661250e61184b565b73ffffffffffffffffffffffffffffffffffffffff1614612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b906148ca565b60405180910390fd5b565b6000612571826128a8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146125d8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806125e484612da2565b915091506125fa81876125f5612d92565b612dc9565b6126465761260f8661260a612d92565b611c3d565b612645576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036126ac576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126b98686866001612d1e565b80156126c457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506127928561276e888887612d24565b7c020000000000000000000000000000000000000000000000000000000017612d5c565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036128185760006001850190506000600460008381526020019081526020016000205403612816576000548114612815578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128808686866001612d87565b505050505050565b6128a3838383604051806020016040528060008152506119ba565b505050565b600080829050806128b7612d8d565b1161293d5760005481101561293c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361293a575b60008103612930576004600083600190039350838152602001908152602001600020549050612906565b809250505061296f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612a47612d92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612af4612d92565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b399190613491565b60405180910390a35050565b612b508484846111be565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612bb257612b7b84848484612e0d565b612bb1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001612bc784612f5d565b01905060008167ffffffffffffffff811115612be657612be5613783565b5b6040519080825280601f01601f191660200182016040528015612c185781602001600182028036833780820191505090505b509050600082602001820190505b600115612c7b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612c6f57612c6e6148ea565b5b04945060008503612c26575b819350505050919050565b6000803033604051602001612c9c929190614961565b6040516020818303038152906040528051906020012090506000612cd184612cc3846130b0565b6130e090919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612d1157600192505050612d18565b6000925050505b92915050565b50505050565b60008060e883901c905060e8612d3b868684613107565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600090565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e33612d92565b8786866040518563ffffffff1660e01b8152600401612e5594939291906149e2565b6020604051808303816000875af1925050508015612e9157506040513d601f19601f82011682018060405250810190612e8e9190614a43565b60015b612f0a573d8060008114612ec1576040519150601f19603f3d011682016040523d82523d6000602084013e612ec6565b606091505b506000815103612f02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612fbb577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612fb157612fb06148ea565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612ff8576d04ee2d6d415b85acef81000000008381612fee57612fed6148ea565b5b0492506020810190505b662386f26fc10000831061302757662386f26fc10000838161301d5761301c6148ea565b5b0492506010810190505b6305f5e1008310613050576305f5e1008381613046576130456148ea565b5b0492506008810190505b612710831061307557612710838161306b5761306a6148ea565b5b0492506004810190505b60648310613098576064838161308e5761308d6148ea565b5b0492506002810190505b600a83106130a7576001810190505b80915050919050565b6000816040516020016130c39190614ae7565b604051602081830303815290604052805190602001209050919050565b60008060006130ef8585613110565b915091506130fc81613161565b819250505092915050565b60009392505050565b60008060418351036131515760008060006020860151925060408601519150606086015160001a9050613145878285856132c7565b9450945050505061315a565b60006002915091505b9250929050565b6000600481111561317557613174614b0d565b5b81600481111561318857613187614b0d565b5b03156132c457600160048111156131a2576131a1614b0d565b5b8160048111156131b5576131b4614b0d565b5b036131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec90614b88565b60405180910390fd5b6002600481111561320957613208614b0d565b5b81600481111561321c5761321b614b0d565b5b0361325c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325390614bf4565b60405180910390fd5b600360048111156132705761326f614b0d565b5b81600481111561328357613282614b0d565b5b036132c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ba90614c86565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156133025760006003915091506133a0565b6000600187878787604051600081526020016040526040516133279493929190614cd1565b6020604051602081039080840390855afa158015613349573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603613397576000600192509250506133a0565b80600092509250505b94509492505050565b6000819050919050565b6133bc816133a9565b82525050565b60006020820190506133d760008301846133b3565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613426816133f1565b811461343157600080fd5b50565b6000813590506134438161341d565b92915050565b60006020828403121561345f5761345e6133e7565b5b600061346d84828501613434565b91505092915050565b60008115159050919050565b61348b81613476565b82525050565b60006020820190506134a66000830184613482565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134e65780820151818401526020810190506134cb565b60008484015250505050565b6000601f19601f8301169050919050565b600061350e826134ac565b61351881856134b7565b93506135288185602086016134c8565b613531816134f2565b840191505092915050565b600060208201905081810360008301526135568184613503565b905092915050565b613567816133a9565b811461357257600080fd5b50565b6000813590506135848161355e565b92915050565b6000602082840312156135a05761359f6133e7565b5b60006135ae84828501613575565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135e2826135b7565b9050919050565b6135f2816135d7565b82525050565b600060208201905061360d60008301846135e9565b92915050565b61361c816135d7565b811461362757600080fd5b50565b60008135905061363981613613565b92915050565b60008060408385031215613656576136556133e7565b5b60006136648582860161362a565b925050602061367585828601613575565b9150509250929050565b600060208284031215613695576136946133e7565b5b60006136a38482850161362a565b91505092915050565b6000806000606084860312156136c5576136c46133e7565b5b60006136d38682870161362a565b93505060206136e48682870161362a565b92505060406136f586828701613575565b9150509250925092565b6000819050919050565b600061372461371f61371a846135b7565b6136ff565b6135b7565b9050919050565b600061373682613709565b9050919050565b60006137488261372b565b9050919050565b6137588161373d565b82525050565b6000602082019050613773600083018461374f565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137bb826134f2565b810181811067ffffffffffffffff821117156137da576137d9613783565b5b80604052505050565b60006137ed6133dd565b90506137f982826137b2565b919050565b600067ffffffffffffffff82111561381957613818613783565b5b613822826134f2565b9050602081019050919050565b82818337600083830152505050565b600061385161384c846137fe565b6137e3565b90508281526020810184848401111561386d5761386c61377e565b5b61387884828561382f565b509392505050565b600082601f83011261389557613894613779565b5b81356138a584826020860161383e565b91505092915050565b6000602082840312156138c4576138c36133e7565b5b600082013567ffffffffffffffff8111156138e2576138e16133ec565b5b6138ee84828501613880565b91505092915050565b6000806040838503121561390e5761390d6133e7565b5b600061391c85828601613575565b925050602061392d8582860161362a565b9150509250929050565b61394081613476565b811461394b57600080fd5b50565b60008135905061395d81613937565b92915050565b6000806040838503121561397a576139796133e7565b5b60006139888582860161362a565b92505060206139998582860161394e565b9150509250929050565b600067ffffffffffffffff8211156139be576139bd613783565b5b6139c7826134f2565b9050602081019050919050565b60006139e76139e2846139a3565b6137e3565b905082815260208101848484011115613a0357613a0261377e565b5b613a0e84828561382f565b509392505050565b600082601f830112613a2b57613a2a613779565b5b8135613a3b8482602086016139d4565b91505092915050565b60008060008060808587031215613a5e57613a5d6133e7565b5b6000613a6c8782880161362a565b9450506020613a7d8782880161362a565b9350506040613a8e87828801613575565b925050606085013567ffffffffffffffff811115613aaf57613aae6133ec565b5b613abb87828801613a16565b91505092959194509250565b60008060408385031215613ade57613add6133e7565b5b6000613aec8582860161362a565b9250506020613afd8582860161362a565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613b2757613b26613779565b5b8235905067ffffffffffffffff811115613b4457613b43613b07565b5b602083019150836001820283011115613b6057613b5f613b0c565b5b9250929050565b600080600060408486031215613b8057613b7f6133e7565b5b6000613b8e86828701613575565b935050602084013567ffffffffffffffff811115613baf57613bae6133ec565b5b613bbb86828701613b11565b92509250509250925092565b7f5468697320706861736520686173206e6f742079657420737461727465642e00600082015250565b6000613bfd601f836134b7565b9150613c0882613bc7565b602082019050919050565b60006020820190508181036000830152613c2c81613bf0565b9050919050565b7f596f75206861766520616c726561647920636c61696d656420796f757220726560008201527f736572766564204e4654732e0000000000000000000000000000000000000000602082015250565b6000613c8f602c836134b7565b9150613c9a82613c33565b604082019050919050565b60006020820190508181036000830152613cbe81613c82565b9050919050565b7f596f7520646f6e27742068617665207265736572766564204e46547320666f7260008201527f20636c61696d2e00000000000000000000000000000000000000000000000000602082015250565b6000613d216027836134b7565b9150613d2c82613cc5565b604082019050919050565b60006020820190508181036000830152613d5081613d14565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d91826133a9565b9150613d9c836133a9565b9250828201905080821115613db457613db3613d57565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e0157607f821691505b602082108103613e1457613e13613dba565b5b50919050565b7f416c726561647920636c61696d65642e00000000000000000000000000000000600082015250565b6000613e506010836134b7565b9150613e5b82613e1a565b602082019050919050565b60006020820190508181036000830152613e7f81613e43565b9050919050565b7f4e6f204e46547320666f7220636c61696d206f6e20746869732061646472657360008201527f732e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ee26022836134b7565b9150613eed82613e86565b604082019050919050565b60006020820190508181036000830152613f1181613ed5565b9050919050565b7f44616f6e6e616b693a205075626c6963206d696e74206973206e6f74206f706560008201527f6e6564207965742e000000000000000000000000000000000000000000000000602082015250565b6000613f746028836134b7565b9150613f7f82613f18565b604082019050919050565b60006020820190508181036000830152613fa381613f67565b9050919050565b6000613fb5826133a9565b9150613fc0836133a9565b9250828202613fce816133a9565b91508282048414831517613fe557613fe4613d57565b5b5092915050565b7f44616f6e6e616b693a20496e73756666696369656e742045544820616d6f756e60008201527f742073656e742e00000000000000000000000000000000000000000000000000602082015250565b60006140486027836134b7565b915061405382613fec565b604082019050919050565b600060208201905081810360008301526140778161403b565b9050919050565b7f44616f6e6e616b693a204d696e7420746f6f206c617267652c2065786365656460008201527f696e672074686520636f6c6c656374696f6e20737570706c7900000000000000602082015250565b60006140da6039836134b7565b91506140e58261407e565b604082019050919050565b60006020820190508181036000830152614109816140cd565b9050919050565b7f4261736520555249206368616e676520686173206265656e2064697361626c6560008201527f64207065726d616e656e746c7900000000000000000000000000000000000000602082015250565b600061416c602d836134b7565b915061417782614110565b604082019050919050565b6000602082019050818103600083015261419b8161415f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026142047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826141c7565b61420e86836141c7565b95508019841693508086168417925050509392505050565b600061424161423c614237846133a9565b6136ff565b6133a9565b9050919050565b6000819050919050565b61425b83614226565b61426f61426782614248565b8484546141d4565b825550505050565b600090565b614284614277565b61428f818484614252565b505050565b5b818110156142b3576142a860008261427c565b600181019050614295565b5050565b601f8211156142f8576142c9816141a2565b6142d2846141b7565b810160208510156142e1578190505b6142f56142ed856141b7565b830182614294565b50505b505050565b600082821c905092915050565b600061431b600019846008026142fd565b1980831691505092915050565b6000614334838361430a565b9150826002028217905092915050565b61434d826134ac565b67ffffffffffffffff81111561436657614365613783565b5b6143708254613de9565b61437b8282856142b7565b600060209050601f8311600181146143ae576000841561439c578287015190505b6143a68582614328565b86555061440e565b601f1984166143bc866141a2565b60005b828110156143e4578489015182556001820191506020850194506020810190506143bf565b8683101561440157848901516143fd601f89168261430a565b8355505b6001600288020188555050505b505050505050565b7f44616f6e6e616b693a20596f752063616e277420616464206d6f72652074686160008201527f6e206d617820737570706c790000000000000000000000000000000000000000602082015250565b6000614472602c836134b7565b915061447d82614416565b604082019050919050565b600060208201905081810360008301526144a181614465565b9050919050565b7f44616f6e6e616b693a20596f752063616e2774206d696e74206d6f726520746860008201527f616e206d617820737570706c7900000000000000000000000000000000000000602082015250565b6000614504602d836134b7565b915061450f826144a8565b604082019050919050565b60006020820190508181036000830152614533816144f7565b9050919050565b600081905092915050565b6000614550826134ac565b61455a818561453a565b935061456a8185602086016134c8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006145ac60058361453a565b91506145b782614576565b600582019050919050565b60006145ce8285614545565b91506145da8284614545565b91506145e58261459f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061464d6026836134b7565b9150614658826145f1565b604082019050919050565b6000602082019050818103600083015261467c81614640565b9050919050565b7f44616f6e6e616b693a20416c6c6f776c697374206d696e74206973206e6f742060008201527f6f70656e6564207965742e000000000000000000000000000000000000000000602082015250565b60006146df602b836134b7565b91506146ea82614683565b604082019050919050565b6000602082019050818103600083015261470e816146d2565b9050919050565b7f44616f6e6e616b693a20596f75206d757374206d696e74206174206c6561737460008201527f206f6e65204e4654000000000000000000000000000000000000000000000000602082015250565b60006147716028836134b7565b915061477c82614715565b604082019050919050565b600060208201905081810360008301526147a081614764565b9050919050565b7f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000600082015250565b60006147dd601b836134b7565b91506147e8826147a7565b602082019050919050565b6000602082019050818103600083015261480c816147d0565b9050919050565b600060408201905061482860008301856135e9565b61483560208301846135e9565b9392505050565b60008151905061484b81613937565b92915050565b600060208284031215614867576148666133e7565b5b60006148758482850161483c565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148b46020836134b7565b91506148bf8261487e565b602082019050919050565b600060208201905081810360008301526148e3816148a7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008160601b9050919050565b600061493182614919565b9050919050565b600061494382614926565b9050919050565b61495b614956826135d7565b614938565b82525050565b600061496d828561494a565b60148201915061497d828461494a565b6014820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b60006149b48261498d565b6149be8185614998565b93506149ce8185602086016134c8565b6149d7816134f2565b840191505092915050565b60006080820190506149f760008301876135e9565b614a0460208301866135e9565b614a1160408301856133b3565b8181036060830152614a2381846149a9565b905095945050505050565b600081519050614a3d8161341d565b92915050565b600060208284031215614a5957614a586133e7565b5b6000614a6784828501614a2e565b91505092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614aa6601c8361453a565b9150614ab182614a70565b601c82019050919050565b6000819050919050565b6000819050919050565b614ae1614adc82614abc565b614ac6565b82525050565b6000614af282614a99565b9150614afe8284614ad0565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614b726018836134b7565b9150614b7d82614b3c565b602082019050919050565b60006020820190508181036000830152614ba181614b65565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000614bde601f836134b7565b9150614be982614ba8565b602082019050919050565b60006020820190508181036000830152614c0d81614bd1565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c706022836134b7565b9150614c7b82614c14565b604082019050919050565b60006020820190508181036000830152614c9f81614c63565b9050919050565b614caf81614abc565b82525050565b600060ff82169050919050565b614ccb81614cb5565b82525050565b6000608082019050614ce66000830187614ca6565b614cf36020830186614cc2565b614d006040830185614ca6565b614d0d6060830184614ca6565b9594505050505056fea2646970667358221220c773e03a4fe98392db0d1e43b152d56841854575057999b26cc49a0c308aa81864736f6c63430008110033697066733a2f2f516d636d5534513437435178426b73794c79366a524c4a36755663666f5a4e4b6544774b576f354e373242334c71

Deployed Bytecode

0x6080604052600436106102fe5760003560e01c80637b08261011610190578063c87b56dd116100dc578063f19e75d411610095578063f51f96dd1161006f578063f51f96dd14610a66578063f5b9846514610a91578063fd24a85414610ace578063fe059c4e14610aea576102fe565b8063f19e75d4146109eb578063f2c4ce1e14610a14578063f2fde38b14610a3d576102fe565b8063c87b56dd146108db578063cace9d2514610918578063d5abeb011461092f578063deaa59df1461095a578063e834a83414610983578063e985e9c5146109ae576102fe565b806395d89b4111610149578063a475b5dd11610123578063a475b5dd1461087a578063ac9e853814610891578063b88d4fde146108a8578063bee6348a146108c4576102fe565b806395d89b411461080f57806399288dbb1461083a578063a22cb46514610851576102fe565b80637b082610146107115780638074be981461073c5780638078059c146107655780638da5cb5b1461077c57806394396a84146107a75780639535ca69146107e4576102fe565b80633ccfd60b1161024f57806355f804b311610208578063639a9a67116101e2578063639a9a671461066757806370a0823114610692578063715018a6146106cf578063771282f6146106e6576102fe565b806355f804b3146105d857806362717468146106015780636352211e1461062a576102fe565b80633ccfd60b146104fb57806341f434341461051257806342842e0e1461053d57806348c27a16146105595780634b8bcb581461059657806351830227146105ad576102fe565b806312160c25116102bc5780631c03ceb5116102965780631c03ceb51461048357806323b872dd1461049a5780632db11544146104b65780633549345e146104d2576102fe565b806312160c251461040657806318160ddd1461042f5780631919fed71461045a576102fe565b80620e7fa81461030357806301ffc9a71461032e578063036a7a191461036b57806306fdde0314610382578063081812fc146103ad578063095ea7b3146103ea575b600080fd5b34801561030f57600080fd5b50610318610b15565b60405161032591906133c2565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613449565b610b1b565b6040516103629190613491565b60405180910390f35b34801561037757600080fd5b50610380610bad565b005b34801561038e57600080fd5b50610397610e23565b6040516103a4919061353c565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf919061358a565b610eb5565b6040516103e191906135f8565b60405180910390f35b61040460048036038101906103ff919061363f565b610f34565b005b34801561041257600080fd5b5061042d6004803603810190610428919061367f565b610f4d565b005b34801561043b57600080fd5b5061044461117d565b60405161045191906133c2565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c919061358a565b611187565b005b34801561048f57600080fd5b50610498611199565b005b6104b460048036038101906104af91906136ac565b6111be565b005b6104d060048036038101906104cb919061358a565b61120d565b005b3480156104de57600080fd5b506104f960048036038101906104f4919061358a565b611380565b005b34801561050757600080fd5b50610510611392565b005b34801561051e57600080fd5b5061052761140b565b604051610534919061375e565b60405180910390f35b610557600480360381019061055291906136ac565b61141d565b005b34801561056557600080fd5b50610580600480360381019061057b919061367f565b61146c565b60405161058d9190613491565b60405180910390f35b3480156105a257600080fd5b506105ab61148c565b005b3480156105b957600080fd5b506105c26114b1565b6040516105cf9190613491565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa91906138ae565b6114c4565b005b34801561060d57600080fd5b506106286004803603810190610623919061363f565b611535565b005b34801561063657600080fd5b50610651600480360381019061064c919061358a565b611695565b60405161065e91906135f8565b60405180910390f35b34801561067357600080fd5b5061067c6116a7565b6040516106899190613491565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b4919061367f565b6116ba565b6040516106c691906133c2565b60405180910390f35b3480156106db57600080fd5b506106e4611772565b005b3480156106f257600080fd5b506106fb611786565b60405161070891906133c2565b60405180910390f35b34801561071d57600080fd5b5061072661178c565b6040516107339190613491565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e91906138f7565b61179f565b005b34801561077157600080fd5b5061077a611826565b005b34801561078857600080fd5b5061079161184b565b60405161079e91906135f8565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c9919061367f565b611875565b6040516107db91906133c2565b60405180910390f35b3480156107f057600080fd5b506107f961188d565b6040516108069190613491565b60405180910390f35b34801561081b57600080fd5b506108246118a0565b604051610831919061353c565b60405180910390f35b34801561084657600080fd5b5061084f611932565b005b34801561085d57600080fd5b5061087860048036038101906108739190613963565b611957565b005b34801561088657600080fd5b5061088f611970565b005b34801561089d57600080fd5b506108a6611995565b005b6108c260048036038101906108bd9190613a44565b6119ba565b005b3480156108d057600080fd5b506108d9611a0b565b005b3480156108e757600080fd5b5061090260048036038101906108fd919061358a565b611a30565b60405161090f919061353c565b60405180910390f35b34801561092457600080fd5b5061092d611bc0565b005b34801561093b57600080fd5b50610944611be5565b60405161095191906133c2565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c919061367f565b611beb565b005b34801561098f57600080fd5b50610998611c37565b6040516109a591906133c2565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d09190613ac7565b611c3d565b6040516109e29190613491565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d919061358a565b611cd1565b005b348015610a2057600080fd5b50610a3b6004803603810190610a3691906138ae565b611d57565b005b348015610a4957600080fd5b50610a646004803603810190610a5f919061367f565b611d72565b005b348015610a7257600080fd5b50610a7b611df5565b604051610a8891906133c2565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab3919061367f565b611dfb565b604051610ac591906133c2565b60405180910390f35b610ae86004803603810190610ae39190613b67565b611e13565b005b348015610af657600080fd5b50610aff61207a565b604051610b0c9190613491565b60405180910390f35b600f5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b601460029054906101000a900460ff16610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390613c13565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613ca5565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290613d37565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d9e9190613d86565b925050819055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600b6000828254610e0f9190613d86565b92505081905550610e20338261208d565b50565b606060028054610e3290613de9565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5e90613de9565b8015610eab5780601f10610e8057610100808354040283529160200191610eab565b820191906000526020600020905b815481529060010190602001808311610e8e57829003601f168201915b5050505050905090565b6000610ec082612248565b610ef6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610f3e816122a7565b610f4883836123a4565b505050565b610f556124e8565b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990613e66565b60405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b90613ef8565b60405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110f79190613d86565b925050819055506001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600b60008282546111689190613d86565b92505081905550611179828261208d565b5050565b6000600d54905090565b61118f6124e8565b80600e8190555050565b6111a16124e8565b6001601460016101000a81548160ff021916908315150217905550565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111fc576111fb336122a7565b5b611207848484612566565b50505050565b601460049054906101000a900460ff1661125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390613f8a565b60405180910390fd5b80600e5461126a9190613faa565b3410156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a39061405e565b60405180910390fd5b6000600d549050600c5482826112c29190613d86565b1115611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa906140f0565b60405180910390fd5b81601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113529190613d86565b9250508190555081600d600082825461136b9190613d86565b9250508190555061137c338361208d565b5050565b6113886124e8565b80600f8190555050565b61139a6124e8565b6000479050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611407573d6000803e3d6000fd5b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461145b5761145a336122a7565b5b611466848484612888565b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6114946124e8565b6001601460026101000a81548160ff021916908315150217905550565b601460009054906101000a900460ff1681565b6114cc6124e8565b60001515601460019054906101000a900460ff16151514611522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151990614182565b60405180910390fd5b80601290816115319190614344565b5050565b61153d6124e8565b6000600d549050600c5482826115539190613d86565b1115611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90614488565b60405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613e66565b60405180910390fd5b81600d60008282546116339190613d86565b9250508190555081600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116899190613d86565b92505081905550505050565b60006116a0826128a8565b9050919050565b601460049054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611721576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61177a6124e8565b6117846000612974565b565b600d5481565b601460019054906101000a900460ff1681565b6117a76124e8565b6000600d549050600c5483826117bd9190613d86565b11156117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f59061451a565b60405180910390fd5b82600d60008282546118109190613d86565b92505081905550611821828461208d565b505050565b61182e6124e8565b6000601460046101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60156020528060005260406000206000915090505481565b601460029054906101000a900460ff1681565b6060600380546118af90613de9565b80601f01602080910402602001604051908101604052809291908181526020018280546118db90613de9565b80156119285780601f106118fd57610100808354040283529160200191611928565b820191906000526020600020905b81548152906001019060200180831161190b57829003601f168201915b5050505050905090565b61193a6124e8565b6001601460046101000a81548160ff021916908315150217905550565b81611961816122a7565b61196b8383612a3a565b505050565b6119786124e8565b6001601460006101000a81548160ff021916908315150217905550565b61199d6124e8565b6000601460026101000a81548160ff021916908315150217905550565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119f8576119f7336122a7565b5b611a0485858585612b45565b5050505050565b611a136124e8565b6001601460036101000a81548160ff021916908315150217905550565b606060001515601460009054906101000a900460ff16151503611adf5760138054611a5a90613de9565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8690613de9565b8015611ad35780601f10611aa857610100808354040283529160200191611ad3565b820191906000526020600020905b815481529060010190602001808311611ab657829003601f168201915b50505050509050611bbb565b600060128054611aee90613de9565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1a90613de9565b8015611b675780601f10611b3c57610100808354040283529160200191611b67565b820191906000526020600020905b815481529060010190602001808311611b4a57829003601f168201915b505050505090506000815111611b8c5760405180602001604052806000815250611bb7565b80611b9684612bb8565b604051602001611ba79291906145c2565b6040516020818303038152906040525b9150505b919050565b611bc86124e8565b6000601460036101000a81548160ff021916908315150217905550565b600c5481565b611bf36124e8565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cd96124e8565b6000600d549050600c548282611cef9190613d86565b1115611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d279061451a565b60405180910390fd5b81600d6000828254611d429190613d86565b92505081905550611d53338361208d565b5050565b611d5f6124e8565b8060139081611d6e9190614344565b5050565b611d7a6124e8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de090614663565b60405180910390fd5b611df281612974565b50565b600e5481565b60096020528060005260406000206000915090505481565b601460039054906101000a900460ff16611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e59906146f5565b60405180910390fd5b60008311611ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9c90614787565b60405180910390fd5b611f15601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612c86565b611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b906147f3565b60405180910390fd5b82600f54611f629190613faa565b341015611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b9061405e565b60405180910390fd5b6000600d549050600c548482611fba9190613d86565b1115611ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff2906140f0565b60405180910390fd5b83601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461204a9190613d86565b9250508190555083600d60008282546120639190613d86565b92505081905550612074338561208d565b50505050565b601460039054906101000a900460ff1681565b600080549050600082036120cd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120da6000848385612d1e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612151836121426000866000612d24565b61214b85612d4c565b17612d5c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121f257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121b7565b506000820361222d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122436000848385612d87565b505050565b600081612253612d8d565b11158015612262575060005482105b80156122a0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156123a1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161231e929190614813565b602060405180830381865afa15801561233b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235f9190614851565b6123a057806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161239791906135f8565b60405180910390fd5b5b50565b60006123af82611695565b90508073ffffffffffffffffffffffffffffffffffffffff166123d0612d92565b73ffffffffffffffffffffffffffffffffffffffff1614612433576123fc816123f7612d92565b611c3d565b612432576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6124f0612d9a565b73ffffffffffffffffffffffffffffffffffffffff1661250e61184b565b73ffffffffffffffffffffffffffffffffffffffff1614612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b906148ca565b60405180910390fd5b565b6000612571826128a8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146125d8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806125e484612da2565b915091506125fa81876125f5612d92565b612dc9565b6126465761260f8661260a612d92565b611c3d565b612645576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036126ac576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126b98686866001612d1e565b80156126c457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506127928561276e888887612d24565b7c020000000000000000000000000000000000000000000000000000000017612d5c565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036128185760006001850190506000600460008381526020019081526020016000205403612816576000548114612815578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128808686866001612d87565b505050505050565b6128a3838383604051806020016040528060008152506119ba565b505050565b600080829050806128b7612d8d565b1161293d5760005481101561293c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361293a575b60008103612930576004600083600190039350838152602001908152602001600020549050612906565b809250505061296f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612a47612d92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612af4612d92565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b399190613491565b60405180910390a35050565b612b508484846111be565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612bb257612b7b84848484612e0d565b612bb1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001612bc784612f5d565b01905060008167ffffffffffffffff811115612be657612be5613783565b5b6040519080825280601f01601f191660200182016040528015612c185781602001600182028036833780820191505090505b509050600082602001820190505b600115612c7b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612c6f57612c6e6148ea565b5b04945060008503612c26575b819350505050919050565b6000803033604051602001612c9c929190614961565b6040516020818303038152906040528051906020012090506000612cd184612cc3846130b0565b6130e090919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612d1157600192505050612d18565b6000925050505b92915050565b50505050565b60008060e883901c905060e8612d3b868684613107565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600090565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e33612d92565b8786866040518563ffffffff1660e01b8152600401612e5594939291906149e2565b6020604051808303816000875af1925050508015612e9157506040513d601f19601f82011682018060405250810190612e8e9190614a43565b60015b612f0a573d8060008114612ec1576040519150601f19603f3d011682016040523d82523d6000602084013e612ec6565b606091505b506000815103612f02576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612fbb577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612fb157612fb06148ea565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612ff8576d04ee2d6d415b85acef81000000008381612fee57612fed6148ea565b5b0492506020810190505b662386f26fc10000831061302757662386f26fc10000838161301d5761301c6148ea565b5b0492506010810190505b6305f5e1008310613050576305f5e1008381613046576130456148ea565b5b0492506008810190505b612710831061307557612710838161306b5761306a6148ea565b5b0492506004810190505b60648310613098576064838161308e5761308d6148ea565b5b0492506002810190505b600a83106130a7576001810190505b80915050919050565b6000816040516020016130c39190614ae7565b604051602081830303815290604052805190602001209050919050565b60008060006130ef8585613110565b915091506130fc81613161565b819250505092915050565b60009392505050565b60008060418351036131515760008060006020860151925060408601519150606086015160001a9050613145878285856132c7565b9450945050505061315a565b60006002915091505b9250929050565b6000600481111561317557613174614b0d565b5b81600481111561318857613187614b0d565b5b03156132c457600160048111156131a2576131a1614b0d565b5b8160048111156131b5576131b4614b0d565b5b036131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec90614b88565b60405180910390fd5b6002600481111561320957613208614b0d565b5b81600481111561321c5761321b614b0d565b5b0361325c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325390614bf4565b60405180910390fd5b600360048111156132705761326f614b0d565b5b81600481111561328357613282614b0d565b5b036132c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ba90614c86565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156133025760006003915091506133a0565b6000600187878787604051600081526020016040526040516133279493929190614cd1565b6020604051602081039080840390855afa158015613349573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603613397576000600192509250506133a0565b80600092509250505b94509492505050565b6000819050919050565b6133bc816133a9565b82525050565b60006020820190506133d760008301846133b3565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613426816133f1565b811461343157600080fd5b50565b6000813590506134438161341d565b92915050565b60006020828403121561345f5761345e6133e7565b5b600061346d84828501613434565b91505092915050565b60008115159050919050565b61348b81613476565b82525050565b60006020820190506134a66000830184613482565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134e65780820151818401526020810190506134cb565b60008484015250505050565b6000601f19601f8301169050919050565b600061350e826134ac565b61351881856134b7565b93506135288185602086016134c8565b613531816134f2565b840191505092915050565b600060208201905081810360008301526135568184613503565b905092915050565b613567816133a9565b811461357257600080fd5b50565b6000813590506135848161355e565b92915050565b6000602082840312156135a05761359f6133e7565b5b60006135ae84828501613575565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135e2826135b7565b9050919050565b6135f2816135d7565b82525050565b600060208201905061360d60008301846135e9565b92915050565b61361c816135d7565b811461362757600080fd5b50565b60008135905061363981613613565b92915050565b60008060408385031215613656576136556133e7565b5b60006136648582860161362a565b925050602061367585828601613575565b9150509250929050565b600060208284031215613695576136946133e7565b5b60006136a38482850161362a565b91505092915050565b6000806000606084860312156136c5576136c46133e7565b5b60006136d38682870161362a565b93505060206136e48682870161362a565b92505060406136f586828701613575565b9150509250925092565b6000819050919050565b600061372461371f61371a846135b7565b6136ff565b6135b7565b9050919050565b600061373682613709565b9050919050565b60006137488261372b565b9050919050565b6137588161373d565b82525050565b6000602082019050613773600083018461374f565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137bb826134f2565b810181811067ffffffffffffffff821117156137da576137d9613783565b5b80604052505050565b60006137ed6133dd565b90506137f982826137b2565b919050565b600067ffffffffffffffff82111561381957613818613783565b5b613822826134f2565b9050602081019050919050565b82818337600083830152505050565b600061385161384c846137fe565b6137e3565b90508281526020810184848401111561386d5761386c61377e565b5b61387884828561382f565b509392505050565b600082601f83011261389557613894613779565b5b81356138a584826020860161383e565b91505092915050565b6000602082840312156138c4576138c36133e7565b5b600082013567ffffffffffffffff8111156138e2576138e16133ec565b5b6138ee84828501613880565b91505092915050565b6000806040838503121561390e5761390d6133e7565b5b600061391c85828601613575565b925050602061392d8582860161362a565b9150509250929050565b61394081613476565b811461394b57600080fd5b50565b60008135905061395d81613937565b92915050565b6000806040838503121561397a576139796133e7565b5b60006139888582860161362a565b92505060206139998582860161394e565b9150509250929050565b600067ffffffffffffffff8211156139be576139bd613783565b5b6139c7826134f2565b9050602081019050919050565b60006139e76139e2846139a3565b6137e3565b905082815260208101848484011115613a0357613a0261377e565b5b613a0e84828561382f565b509392505050565b600082601f830112613a2b57613a2a613779565b5b8135613a3b8482602086016139d4565b91505092915050565b60008060008060808587031215613a5e57613a5d6133e7565b5b6000613a6c8782880161362a565b9450506020613a7d8782880161362a565b9350506040613a8e87828801613575565b925050606085013567ffffffffffffffff811115613aaf57613aae6133ec565b5b613abb87828801613a16565b91505092959194509250565b60008060408385031215613ade57613add6133e7565b5b6000613aec8582860161362a565b9250506020613afd8582860161362a565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613b2757613b26613779565b5b8235905067ffffffffffffffff811115613b4457613b43613b07565b5b602083019150836001820283011115613b6057613b5f613b0c565b5b9250929050565b600080600060408486031215613b8057613b7f6133e7565b5b6000613b8e86828701613575565b935050602084013567ffffffffffffffff811115613baf57613bae6133ec565b5b613bbb86828701613b11565b92509250509250925092565b7f5468697320706861736520686173206e6f742079657420737461727465642e00600082015250565b6000613bfd601f836134b7565b9150613c0882613bc7565b602082019050919050565b60006020820190508181036000830152613c2c81613bf0565b9050919050565b7f596f75206861766520616c726561647920636c61696d656420796f757220726560008201527f736572766564204e4654732e0000000000000000000000000000000000000000602082015250565b6000613c8f602c836134b7565b9150613c9a82613c33565b604082019050919050565b60006020820190508181036000830152613cbe81613c82565b9050919050565b7f596f7520646f6e27742068617665207265736572766564204e46547320666f7260008201527f20636c61696d2e00000000000000000000000000000000000000000000000000602082015250565b6000613d216027836134b7565b9150613d2c82613cc5565b604082019050919050565b60006020820190508181036000830152613d5081613d14565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d91826133a9565b9150613d9c836133a9565b9250828201905080821115613db457613db3613d57565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e0157607f821691505b602082108103613e1457613e13613dba565b5b50919050565b7f416c726561647920636c61696d65642e00000000000000000000000000000000600082015250565b6000613e506010836134b7565b9150613e5b82613e1a565b602082019050919050565b60006020820190508181036000830152613e7f81613e43565b9050919050565b7f4e6f204e46547320666f7220636c61696d206f6e20746869732061646472657360008201527f732e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ee26022836134b7565b9150613eed82613e86565b604082019050919050565b60006020820190508181036000830152613f1181613ed5565b9050919050565b7f44616f6e6e616b693a205075626c6963206d696e74206973206e6f74206f706560008201527f6e6564207965742e000000000000000000000000000000000000000000000000602082015250565b6000613f746028836134b7565b9150613f7f82613f18565b604082019050919050565b60006020820190508181036000830152613fa381613f67565b9050919050565b6000613fb5826133a9565b9150613fc0836133a9565b9250828202613fce816133a9565b91508282048414831517613fe557613fe4613d57565b5b5092915050565b7f44616f6e6e616b693a20496e73756666696369656e742045544820616d6f756e60008201527f742073656e742e00000000000000000000000000000000000000000000000000602082015250565b60006140486027836134b7565b915061405382613fec565b604082019050919050565b600060208201905081810360008301526140778161403b565b9050919050565b7f44616f6e6e616b693a204d696e7420746f6f206c617267652c2065786365656460008201527f696e672074686520636f6c6c656374696f6e20737570706c7900000000000000602082015250565b60006140da6039836134b7565b91506140e58261407e565b604082019050919050565b60006020820190508181036000830152614109816140cd565b9050919050565b7f4261736520555249206368616e676520686173206265656e2064697361626c6560008201527f64207065726d616e656e746c7900000000000000000000000000000000000000602082015250565b600061416c602d836134b7565b915061417782614110565b604082019050919050565b6000602082019050818103600083015261419b8161415f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026142047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826141c7565b61420e86836141c7565b95508019841693508086168417925050509392505050565b600061424161423c614237846133a9565b6136ff565b6133a9565b9050919050565b6000819050919050565b61425b83614226565b61426f61426782614248565b8484546141d4565b825550505050565b600090565b614284614277565b61428f818484614252565b505050565b5b818110156142b3576142a860008261427c565b600181019050614295565b5050565b601f8211156142f8576142c9816141a2565b6142d2846141b7565b810160208510156142e1578190505b6142f56142ed856141b7565b830182614294565b50505b505050565b600082821c905092915050565b600061431b600019846008026142fd565b1980831691505092915050565b6000614334838361430a565b9150826002028217905092915050565b61434d826134ac565b67ffffffffffffffff81111561436657614365613783565b5b6143708254613de9565b61437b8282856142b7565b600060209050601f8311600181146143ae576000841561439c578287015190505b6143a68582614328565b86555061440e565b601f1984166143bc866141a2565b60005b828110156143e4578489015182556001820191506020850194506020810190506143bf565b8683101561440157848901516143fd601f89168261430a565b8355505b6001600288020188555050505b505050505050565b7f44616f6e6e616b693a20596f752063616e277420616464206d6f72652074686160008201527f6e206d617820737570706c790000000000000000000000000000000000000000602082015250565b6000614472602c836134b7565b915061447d82614416565b604082019050919050565b600060208201905081810360008301526144a181614465565b9050919050565b7f44616f6e6e616b693a20596f752063616e2774206d696e74206d6f726520746860008201527f616e206d617820737570706c7900000000000000000000000000000000000000602082015250565b6000614504602d836134b7565b915061450f826144a8565b604082019050919050565b60006020820190508181036000830152614533816144f7565b9050919050565b600081905092915050565b6000614550826134ac565b61455a818561453a565b935061456a8185602086016134c8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006145ac60058361453a565b91506145b782614576565b600582019050919050565b60006145ce8285614545565b91506145da8284614545565b91506145e58261459f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061464d6026836134b7565b9150614658826145f1565b604082019050919050565b6000602082019050818103600083015261467c81614640565b9050919050565b7f44616f6e6e616b693a20416c6c6f776c697374206d696e74206973206e6f742060008201527f6f70656e6564207965742e000000000000000000000000000000000000000000602082015250565b60006146df602b836134b7565b91506146ea82614683565b604082019050919050565b6000602082019050818103600083015261470e816146d2565b9050919050565b7f44616f6e6e616b693a20596f75206d757374206d696e74206174206c6561737460008201527f206f6e65204e4654000000000000000000000000000000000000000000000000602082015250565b60006147716028836134b7565b915061477c82614715565b604082019050919050565b600060208201905081810360008301526147a081614764565b9050919050565b7f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000600082015250565b60006147dd601b836134b7565b91506147e8826147a7565b602082019050919050565b6000602082019050818103600083015261480c816147d0565b9050919050565b600060408201905061482860008301856135e9565b61483560208301846135e9565b9392505050565b60008151905061484b81613937565b92915050565b600060208284031215614867576148666133e7565b5b60006148758482850161483c565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148b46020836134b7565b91506148bf8261487e565b602082019050919050565b600060208201905081810360008301526148e3816148a7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008160601b9050919050565b600061493182614919565b9050919050565b600061494382614926565b9050919050565b61495b614956826135d7565b614938565b82525050565b600061496d828561494a565b60148201915061497d828461494a565b6014820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b60006149b48261498d565b6149be8185614998565b93506149ce8185602086016134c8565b6149d7816134f2565b840191505092915050565b60006080820190506149f760008301876135e9565b614a0460208301866135e9565b614a1160408301856133b3565b8181036060830152614a2381846149a9565b905095945050505050565b600081519050614a3d8161341d565b92915050565b600060208284031215614a5957614a586133e7565b5b6000614a6784828501614a2e565b91505092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614aa6601c8361453a565b9150614ab182614a70565b601c82019050919050565b6000819050919050565b6000819050919050565b614ae1614adc82614abc565b614ac6565b82525050565b6000614af282614a99565b9150614afe8284614ad0565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614b726018836134b7565b9150614b7d82614b3c565b602082019050919050565b60006020820190508181036000830152614ba181614b65565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000614bde601f836134b7565b9150614be982614ba8565b602082019050919050565b60006020820190508181036000830152614c0d81614bd1565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c706022836134b7565b9150614c7b82614c14565b604082019050919050565b60006020820190508181036000830152614c9f81614c63565b9050919050565b614caf81614abc565b82525050565b600060ff82169050919050565b614ccb81614cb5565b82525050565b6000608082019050614ce66000830187614ca6565b614cf36020830186614cc2565b614d006040830185614ca6565b614d0d6060830184614ca6565b9594505050505056fea2646970667358221220c773e03a4fe98392db0d1e43b152d56841854575057999b26cc49a0c308aa81864736f6c63430008110033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.