ETH Price: $3,398.60 (+5.99%)
 

Overview

Max Total Supply

130 SM8K

Holders

16

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 SM8K
0xe22692b30a35fa6efe572909d875173d4bc21eae
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:
Indelible

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 18 : Indelible.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "../extensions/ERC721AX.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "solady/src/utils/LibPRNG.sol";
import "solady/src/utils/Base64.sol";
import "solady/src/utils/SSTORE2.sol";
import {DefaultOperatorFilterer} from "./DefaultOperatorFilterer.sol";
import "./lib/DynamicBuffer.sol";
import "./lib/HelperLib.sol";
import "./interfaces/IIndeliblePro.sol";

contract Indelible is ERC721AX, DefaultOperatorFilterer, ReentrancyGuard, Ownable {
    using HelperLib for uint;
    using DynamicBuffer for bytes;
    using LibPRNG for *;

    event MetadataUpdate(uint256 _tokenId);
    event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);
    
    struct LinkedTraitDTO {
        uint[] traitA;
        uint[] traitB;
    }
    
    struct TraitDTO {
        string name;
        string mimetype;
        bytes data;
        bool hide;
        bool useExistingData;
        uint existingDataIndex;
    }
    
    struct Trait {
        string name;
        string mimetype;
        bool hide;
    }
    
    struct ContractData {
        string name;
        string description;
        string image;
        string banner;
        string website;
        uint royalties;
        string royaltiesRecipient;
    }
    
    struct WithdrawRecipient {
        string name;
        string imageUrl;
        address recipientAddress;
        uint percentage;
    }

    mapping(uint => address[]) private _traitDataPointers;
    mapping(uint => mapping(uint => Trait)) private _traitDetails;
    mapping(uint => bool) private _renderTokenOffChain;
    mapping(uint => mapping(uint => uint[])) private _linkedTraits;
    
    address payable private immutable COLLECTOR_FEE_RECIPIENT = payable(0x29FbB84b835F892EBa2D331Af9278b74C595EDf1);
    uint public constant COLLECTOR_FEE = 0.000777 ether;
    uint private constant MAX_BATCH_MINT = 20;
    bytes32 private constant TIER_2_MERKLE_ROOT = 0xc9e317826dbbd1cfb5121cd14f5a918d94e68798130ece0ccd1550653a4e74fd;

    uint[] private primeNumbers = [
        577511032852311313897393410587293046739400234012091068864039,
        404644724038849848148120945109420144471824163937039418139293,
        691768493742031397614199039242108474419560046070176392220443,
        668657002110143242634345628894400250523693660459153690697319,
        435971530141217434414644657864363626485043834932240354294471,
        752418160701043808365139710144653623245409393563454484133021,
        902136958511366894226891930366237266945146287574429473893339,
        260358056720866428886064518836405367897244634561573286322231
    ];
    uint[][8] private tiers;
    string[] private layerNames = [unicode"Lasers", unicode"Mouth", unicode"Head", unicode"Face", unicode"Eyes", unicode"Shirt", unicode"Skin", unicode"Background"];
    bool private shouldWrapSVG = true;
    address private indelibleProContractAddress = 0xf3DAEb3772B00dFB3BBb1Ad4fB3494ea6b9Be4fE;
    string private backgroundColor = "transparent";
    uint private randomSeed;
    bytes32 private merkleRoot = 0xabfadca4e99033ffb03ea193e998e01c85214f242280797446b3e1db09528eaf;
    string private networkId = "1";
    string private placeholderImage = "";

    bool public isContractSealed;
    uint public maxSupply = 1000;
    uint public maxPerAddress = 20;
    uint public publicMintPrice = 0.006 ether;
    string public baseURI;
    bool public isPublicMintActive;
    uint public allowListPrice = 0.004 ether;
    uint public maxPerAllowList = 20;
    bool public isAllowListActive;

    ContractData public contractData = ContractData(unicode"SM8L KEVIN", unicode"SM8L KEVIN is a tribute to OnchainKevin on 64 pixels  |  8x8  |  100% on-chain |  The simplicity of pixels creates room for interpretation & imagination", "https://files.indelible.xyz/profile/6989f3c2-2090-4701-a7c6-1103a6d45ba3", "https://files.indelible.xyz/banner/6989f3c2-2090-4701-a7c6-1103a6d45ba3", "", 800, "0x32D70830E87d6AFfdd0ec7Bc2239EE672F29f116");
    WithdrawRecipient[] public withdrawRecipients;

    constructor() ERC721A(unicode"SM8L KEVIN", unicode"SM8K") {
        tiers[0] = [946,24,12,12,3,2,1];
        tiers[1] = [205,186,136,118,101,88,53,51,42,20,0,0,0,0,0];
        tiers[2] = [150,105,95,92,86,51,44,44,41,37,35,29,28,24,22,20,20,20,16,11,10,10,10];
        tiers[3] = [250,123,112,100,96,67,44,41,36,29,23,21,21,14,10,8,5];
        tiers[4] = [170,164,150,148,142,124,102];
        tiers[5] = [132,122,114,105,75,64,59,57,44,44,41,39,34,26,22,22];
        tiers[6] = [594,366,40];
        tiers[7] = [139,137,120,117,112,105,92,81,46,41,10];
        
        randomSeed = uint(
            keccak256(
                abi.encodePacked(
                    tx.gasprice,
                    block.number,
                    block.timestamp,
                    block.difficulty,
                    blockhash(block.number - 1),
                    msg.sender
                )
            )
        );
    }

    modifier whenMintActive() {
        require(isMintActive(), "Minting is not active");
        _;
    }

    modifier whenUnsealed() {
        require(!isContractSealed, "Contract is sealed");
        _;
    }

    receive() external payable {
        require(isPublicMintActive, "Public minting is not active");
        handleMint(msg.value / publicMintPrice, msg.sender);
    }

    function rarityGen(uint randinput, uint rarityTier)
        internal
        view
        returns (uint)
    {
        uint currentLowerBound = 0;
        for (uint i = 0; i < tiers[rarityTier].length; i++) {
            uint thisPercentage = tiers[rarityTier][i];
            if (
                randinput >= currentLowerBound &&
                randinput < currentLowerBound + thisPercentage
            ) return i;
            currentLowerBound = currentLowerBound + thisPercentage;
        }

        revert();
    }

    function getTokenDataId(uint tokenId) internal view returns (uint) {
        uint[] memory indices = new uint[](maxSupply);

        unchecked {
            for (uint i; i < maxSupply; i += 1) {
                indices[i] = i;
            }
        }

        LibPRNG.PRNG memory prng;
        prng.seed(randomSeed);
        prng.shuffle(indices);

        return indices[tokenId];
    }

    function tokenIdToHash(
        uint tokenId
    ) public view returns (string memory) {
        require(randomSeed != 0, "Collection has not revealed");
        require(_exists(tokenId), "Invalid token");
        bytes memory hashBytes = DynamicBuffer.allocate(tiers.length * 4);
        uint tokenDataId = getTokenDataId(tokenId);

        uint[] memory hash = new uint[](tiers.length);
        bool[] memory modifiedLayers = new bool[](tiers.length);
        uint traitSeed = randomSeed % maxSupply;

        for (uint i = 0; i < tiers.length; i++) {
            uint traitIndex = hash[i];
            if (modifiedLayers[i] == false) {
                uint traitRangePosition = ((tokenDataId + i + traitSeed) * primeNumbers[i]) % maxSupply;
                traitIndex = rarityGen(traitRangePosition, i);
                hash[i] = traitIndex;
            }

            if (_linkedTraits[i][traitIndex].length > 0) {
                hash[_linkedTraits[i][traitIndex][0]] = _linkedTraits[i][traitIndex][1];
                modifiedLayers[_linkedTraits[i][traitIndex][0]] = true;
            }
        }

        for (uint i = 0; i < hash.length; i++) {
            if (hash[i] < 10) {
                hashBytes.appendSafe("00");
            } else if (hash[i] < 100) {
                hashBytes.appendSafe("0");
            }
            if (hash[i] > 999) {
                hashBytes.appendSafe("999");
            } else {
                hashBytes.appendSafe(bytes(_toString(hash[i])));
            }
        }

        return string(hashBytes);
    }

    function handleMint(uint count, address recipient) internal whenMintActive {
        uint totalMinted = _totalMinted();
        require(count > 0, "Invalid token count");
        require(totalMinted + count <= maxSupply, "All tokens are gone");
        uint mintPrice = isPublicMintActive ? publicMintPrice : allowListPrice;
        bool shouldCheckProHolder = count * (mintPrice + COLLECTOR_FEE) != msg.value;

        if (isPublicMintActive && msg.sender != owner()) {
            if (shouldCheckProHolder) {
                require(checkProHolder(msg.sender), "Missing collector's fee.");
                require(count * publicMintPrice == msg.value, "Incorrect amount of ether sent");
            } else {
                require(count * (publicMintPrice + COLLECTOR_FEE) == msg.value, "Incorrect amount of ether sent");
            }
            require(_numberMinted(msg.sender) + count <= maxPerAddress, "Exceeded max mints allowed");
            require(msg.sender == tx.origin, "EOAs only");
        }

        uint batchCount = count / MAX_BATCH_MINT;
        uint remainder = count % MAX_BATCH_MINT;

        for (uint i = 0; i < batchCount; i++) {
            _mint(recipient, MAX_BATCH_MINT);
        }

        if (remainder > 0) {
            _mint(recipient, remainder);
        }

        if (!shouldCheckProHolder && COLLECTOR_FEE > 0) {
            handleCollectorFee(count);
        }
    }

    function handleCollectorFee(uint count) internal {
        uint256 totalFee = COLLECTOR_FEE * count;
        (bool sent, ) = COLLECTOR_FEE_RECIPIENT.call{value: totalFee}("");
        require(sent, "Failed to send collector fee");
    }

    function mint(uint count, bytes32[] calldata merkleProof)
        external
        payable
        nonReentrant
        whenMintActive
    {
        if (!isPublicMintActive && msg.sender != owner()) {
            bool shouldCheckProHolder = count * (allowListPrice + COLLECTOR_FEE) != msg.value;
            if (shouldCheckProHolder) {
                require(checkProHolder(msg.sender), "Missing collector's fee.");
                require(count * allowListPrice == msg.value, "Incorrect amount of ether sent");
            } else {
                require(count * (allowListPrice + COLLECTOR_FEE) == msg.value, "Incorrect amount of ether sent");
            }
            require(onAllowList(msg.sender, merkleProof), "Not on allow list");
            require(_numberMinted(msg.sender) + count <= maxPerAllowList, "Exceeded max mints allowed");
        }
        handleMint(count, msg.sender);
    }

    function checkProHolder(address collector) public view returns (bool) {
        IIndeliblePro proContract = IIndeliblePro(indelibleProContractAddress);
        uint256 tokenCount = proContract.balanceOf(collector);
        return tokenCount > 0;
    }

    function airdrop(uint count, address[] calldata recipients)
        external
        payable
        nonReentrant
        whenMintActive
    {
        require(isPublicMintActive || msg.sender == owner(), "Public minting is not active");
        
        for (uint i = 0; i < recipients.length; i++) {
            handleMint(count, recipients[i]);
        }
    }

    function isMintActive() public view returns (bool) {
        return _totalMinted() < maxSupply && (isPublicMintActive || isAllowListActive || msg.sender == owner());
    }

    function hashToSVG(string memory _hash)
        public
        view
        returns (string memory)
    {
        uint thisTraitIndex;
        
        bytes memory svgBytes = DynamicBuffer.allocate(1024 * 128);
        svgBytes.appendSafe('<svg width="1200" height="1200" viewBox="0 0 1200 1200" version="1.2" xmlns="http://www.w3.org/2000/svg" style="background-color:');
        svgBytes.appendSafe(
            abi.encodePacked(
                backgroundColor,
                ";background-image:url("
            )
        );

        for (uint i = 0; i < tiers.length - 1; i++) {
            thisTraitIndex = HelperLib.parseInt(
                HelperLib._substring(_hash, (i * 3), (i * 3) + 3)
            );
            svgBytes.appendSafe(
                abi.encodePacked(
                    "data:",
                    _traitDetails[i][thisTraitIndex].mimetype,
                    ";base64,",
                    Base64.encode(SSTORE2.read(_traitDataPointers[i][thisTraitIndex])),
                    "),url("
                )
            );
        }

        thisTraitIndex = HelperLib.parseInt(
            HelperLib._substring(_hash, (tiers.length * 3) - 3, tiers.length * 3)
        );
            
        svgBytes.appendSafe(
            abi.encodePacked(
                "data:",
                _traitDetails[tiers.length - 1][thisTraitIndex].mimetype,
                ";base64,",
                Base64.encode(SSTORE2.read(_traitDataPointers[tiers.length - 1][thisTraitIndex])),
                ');background-repeat:no-repeat;background-size:contain;background-position:center;image-rendering:-webkit-optimize-contrast;-ms-interpolation-mode:nearest-neighbor;image-rendering:-moz-crisp-edges;image-rendering:pixelated;"></svg>'
            )
        );

        return string(
            abi.encodePacked(
                "data:image/svg+xml;base64,",
                Base64.encode(svgBytes)
            )
        );
    }

    function hashToMetadata(string memory _hash)
        public
        view
        returns (string memory)
    {
        bytes memory metadataBytes = DynamicBuffer.allocate(1024 * 128);
        metadataBytes.appendSafe("[");
        bool afterFirstTrait;

        for (uint i = 0; i < tiers.length; i++) {
            uint thisTraitIndex = HelperLib.parseInt(
                HelperLib._substring(_hash, (i * 3), (i * 3) + 3)
            );
            if (_traitDetails[i][thisTraitIndex].hide == false) {
                if (afterFirstTrait) {
                    metadataBytes.appendSafe(",");
                }
                metadataBytes.appendSafe(
                    abi.encodePacked(
                        '{"trait_type":"',
                        layerNames[i],
                        '","value":"',
                        _traitDetails[i][thisTraitIndex].name,
                        '"}'
                    )
                );
                if (afterFirstTrait == false) {
                    afterFirstTrait = true;
                }
            }

            if (i == tiers.length - 1) {
                metadataBytes.appendSafe("]");
            }
        }

        return string(metadataBytes);
    }

    function onAllowList(address addr, bytes32[] calldata merkleProof) public view returns (bool) {
        return MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(addr))) || MerkleProof.verify(merkleProof, TIER_2_MERKLE_ROOT, keccak256(abi.encodePacked(addr)));
    }

    function tokenURI(uint tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Invalid token");

        bytes memory jsonBytes = DynamicBuffer.allocate(1024 * 128);

        jsonBytes.appendSafe(
            abi.encodePacked(
                '{"name":"',
                contractData.name,
                " #",
                _toString(tokenId),
                '","description":"',
                contractData.description,
                '",'
            )
        );

        if (randomSeed == 0) {
            jsonBytes.appendSafe(
                abi.encodePacked(
                    '"image":"',
                    placeholderImage,
                    '"}'
                )
            );
        } else {
            string memory tokenHash = tokenIdToHash(tokenId);
            
            if (bytes(baseURI).length > 0 && _renderTokenOffChain[tokenId]) {
                jsonBytes.appendSafe(
                    abi.encodePacked(
                        '"image":"',
                        baseURI,
                        _toString(tokenId),
                        "?dna=",
                        tokenHash,
                        '&networkId=',
                        networkId,
                        '",'
                    )
                );
            } else {
                string memory svgCode = "";
                if (shouldWrapSVG) {
                    string memory svgString = hashToSVG(tokenHash);
                    svgCode = string(
                        abi.encodePacked(
                            "data:image/svg+xml;base64,",
                            Base64.encode(
                                abi.encodePacked(
                                    '<svg width="100%" height="100%" viewBox="0 0 1200 1200" version="1.2" xmlns="http://www.w3.org/2000/svg"><image width="1200" height="1200" href="',
                                    svgString,
                                    '"></image></svg>'
                                )
                            )
                        )
                    );
                } else {
                    svgCode = hashToSVG(tokenHash);
                }

                jsonBytes.appendSafe(
                    abi.encodePacked(
                        '"image_data":"',
                        svgCode,
                        '",'
                    )
                );
            }

            jsonBytes.appendSafe(
                abi.encodePacked(
                    '"attributes":',
                    hashToMetadata(tokenHash),
                    "}"
                )
            );
        }

        return string(
            abi.encodePacked(
                "data:application/json;base64,",
                Base64.encode(jsonBytes)
            )
        );
    }

    function contractURI()
        public
        view
        returns (string memory)
    {
        return string(
            abi.encodePacked(
                "data:application/json;base64,",
                Base64.encode(
                    abi.encodePacked(
                        '{"name":"',
                        contractData.name,
                        '","description":"',
                        contractData.description,
                        '","image":"',
                        contractData.image,
                        '","banner":"',
                        contractData.banner,
                        '","external_link":"',
                        contractData.website,
                        '","seller_fee_basis_points":',
                        _toString(contractData.royalties),
                        ',"fee_recipient":"',
                        contractData.royaltiesRecipient,
                        '"}'
                    )
                )
            )
        );
    }

    function isRevealed()
        public
        view
        returns (bool)
    {
        return randomSeed != 0;
    }

    function tokenIdToSVG(uint tokenId)
        public
        view
        returns (string memory)
    {
        return randomSeed == 0 ? placeholderImage : hashToSVG(tokenIdToHash(tokenId));
    }

    function traitDetails(uint layerIndex, uint traitIndex)
        public
        view
        returns (Trait memory)
    {
        return _traitDetails[layerIndex][traitIndex];
    }

    function traitData(uint layerIndex, uint traitIndex)
        public
        view
        returns (bytes memory)
    {
        return SSTORE2.read(_traitDataPointers[layerIndex][traitIndex]);
    }

    function getLinkedTraits(uint layerIndex, uint traitIndex)
        public
        view
        returns (uint[] memory)
    {
        return _linkedTraits[layerIndex][traitIndex];
    }

    function addLayer(uint layerIndex, TraitDTO[] calldata traits)
        public
        onlyOwner
        whenUnsealed
    {
        require(tiers[layerIndex].length == traits.length, "Traits length is incorrect");
        address[] memory dataPointers = new address[](traits.length);
        for (uint i = 0; i < traits.length; i++) {
            if (traits[i].useExistingData) {
                dataPointers[i] = dataPointers[traits[i].existingDataIndex];
            } else {
                dataPointers[i] = SSTORE2.write(traits[i].data);
            }
            _traitDetails[layerIndex][i] = Trait(traits[i].name, traits[i].mimetype, traits[i].hide);
        }
        _traitDataPointers[layerIndex] = dataPointers;
        return;
    }

    function addTrait(uint layerIndex, uint traitIndex, TraitDTO calldata trait)
        public
        onlyOwner
        whenUnsealed
    {
        _traitDetails[layerIndex][traitIndex] = Trait(trait.name, trait.mimetype, trait.hide);
        address[] memory dataPointers = _traitDataPointers[layerIndex];
        if (trait.useExistingData) {
            dataPointers[traitIndex] = dataPointers[trait.existingDataIndex];
        } else {
            dataPointers[traitIndex] = SSTORE2.write(trait.data);
        }
        _traitDataPointers[layerIndex] = dataPointers;
        return;
    }

    function setLinkedTraits(LinkedTraitDTO[] calldata linkedTraits)
        public
        onlyOwner
        whenUnsealed
    {
        for (uint i = 0; i < linkedTraits.length; i++) {
            _linkedTraits[linkedTraits[i].traitA[0]][linkedTraits[i].traitA[1]] = [linkedTraits[i].traitB[0],linkedTraits[i].traitB[1]];
        }
    }

    function setContractData(ContractData calldata data) external onlyOwner whenUnsealed {
        contractData = data;
    }

    function setMaxPerAddress(uint max) external onlyOwner {
        maxPerAddress = max;
    }

    function setBaseURI(string calldata uri) external onlyOwner {
        baseURI = uri;

        emit BatchMetadataUpdate(0, maxSupply - 1);
    }

    function setBackgroundColor(string calldata color) external onlyOwner whenUnsealed {
        backgroundColor = color;
    }

    function setRenderOfTokenId(uint tokenId, bool renderOffChain) external {
        require(msg.sender == ownerOf(tokenId), "Not token owner");
        _renderTokenOffChain[tokenId] = renderOffChain;

        emit MetadataUpdate(tokenId);
    }

    function setMerkleRoot(bytes32 newMerkleRoot) external onlyOwner {
        merkleRoot = newMerkleRoot;
    }

    function setMaxPerAllowList(uint max) external onlyOwner {
        maxPerAllowList = max;
    }

    function setAllowListPrice(uint price) external onlyOwner {
        allowListPrice = price;
    }

    function setPublicMintPrice(uint price) external onlyOwner {
        publicMintPrice = price;
    }

    function setPlaceholderImage(string calldata placeholder) external onlyOwner {
        placeholderImage = placeholder;
    }

    function setRandomSeed() external onlyOwner {
        require(randomSeed == 0, "Random seed is already set");
        randomSeed = uint(
            keccak256(
                abi.encodePacked(
                    tx.gasprice,
                    block.number,
                    block.timestamp,
                    block.difficulty,
                    blockhash(block.number - 1),
                    msg.sender
                )
            )
        );

        emit BatchMetadataUpdate(0, maxSupply - 1);
    }

    function toggleAllowListMint() external onlyOwner {
        isAllowListActive = !isAllowListActive;
    }

    function toggleWrapSVG() external onlyOwner {
        shouldWrapSVG = !shouldWrapSVG;
    }

    function togglePublicMint() external onlyOwner {
        isPublicMintActive = !isPublicMintActive;
    }

    function sealContract() external whenUnsealed onlyOwner {
        isContractSealed = true;
    }

    function withdraw() external onlyOwner nonReentrant {
        uint balance = address(this).balance;
        uint amount = balance;
        uint distAmount = 0;
        uint totalDistributionPercentage = 0;

        address payable receiver = payable(owner());

        if (withdrawRecipients.length > 0) {
            for (uint i = 0; i < withdrawRecipients.length; i++) {
                totalDistributionPercentage = totalDistributionPercentage + withdrawRecipients[i].percentage;
                address payable currRecepient = payable(withdrawRecipients[i].recipientAddress);
                distAmount = (amount * (10000 - withdrawRecipients[i].percentage)) / 10000;

                Address.sendValue(currRecepient, amount - distAmount);
            }
        }
        balance = address(this).balance;
        Address.sendValue(receiver, balance);
    }

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

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

    function safeTransferFrom(address from, address to, uint tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

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

import {OperatorFilterer} from "./OperatorFilterer.sol";

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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

import {IOperatorFilterRegistry} from "./interfaces/IOperatorFilterRegistry.sol";

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    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(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // 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) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

File 4 of 18 : IIndeliblePro.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

interface IIndeliblePro {
    function balanceOf(address owner) external view returns (uint256);
}

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

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 6 of 18 : DynamicBuffer.sol
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)

pragma solidity >=0.8.0;

/// @title DynamicBuffer
/// @author David Huber (@cxkoda) and Simon Fremaux (@dievardump). See also
///         https://raw.githubusercontent.com/dievardump/solidity-dynamic-buffer
/// @notice This library is used to allocate a big amount of container memory
//          which will be subsequently filled without needing to reallocate
///         memory.
/// @dev First, allocate memory.
///      Then use `buffer.appendUnchecked(theBytes)` or `appendSafe()` if
///      bounds checking is required.
library DynamicBuffer {
    /// @notice Allocates container space for the DynamicBuffer
    /// @param capacity The intended max amount of bytes in the buffer
    /// @return buffer The memory location of the buffer
    /// @dev Allocates `capacity + 0x60` bytes of space
    ///      The buffer array starts at the first container data position,
    ///      (i.e. `buffer = container + 0x20`)
    function allocate(uint256 capacity)
        internal
        pure
        returns (bytes memory buffer)
    {
        assembly {
            // Get next-free memory address
            let container := mload(0x40)

            // Allocate memory by setting a new next-free address
            {
                // Add 2 x 32 bytes in size for the two length fields
                // Add 32 bytes safety space for 32B chunked copy
                let size := add(capacity, 0x60)
                let newNextFree := add(container, size)
                mstore(0x40, newNextFree)
            }

            // Set the correct container length
            {
                let length := add(capacity, 0x40)
                mstore(container, length)
            }

            // The buffer starts at idx 1 in the container (0 is length)
            buffer := add(container, 0x20)

            // Init content with length 0
            mstore(buffer, 0)
        }

        return buffer;
    }

    /// @notice Appends data to buffer, and update buffer length
    /// @param buffer the buffer to append the data to
    /// @param data the data to append
    /// @dev Does not perform out-of-bound checks (container capacity)
    ///      for efficiency.
    function appendUnchecked(bytes memory buffer, bytes memory data)
        internal
        pure
    {
        assembly {
            let length := mload(data)
            for {
                data := add(data, 0x20)
                let dataEnd := add(data, length)
                let copyTo := add(buffer, add(mload(buffer), 0x20))
            } lt(data, dataEnd) {
                data := add(data, 0x20)
                copyTo := add(copyTo, 0x20)
            } {
                // Copy 32B chunks from data to buffer.
                // This may read over data array boundaries and copy invalid
                // bytes, which doesn't matter in the end since we will
                // later set the correct buffer length, and have allocated an
                // additional word to avoid buffer overflow.
                mstore(copyTo, mload(data))
            }

            // Update buffer length
            mstore(buffer, add(mload(buffer), length))
        }
    }

    /// @notice Appends data to buffer, and update buffer length
    /// @param buffer the buffer to append the data to
    /// @param data the data to append
    /// @dev Performs out-of-bound checks and calls `appendUnchecked`.
    function appendSafe(bytes memory buffer, bytes memory data) internal pure {
        uint256 capacity;
        uint256 length;
        assembly {
            capacity := sub(mload(sub(buffer, 0x20)), 0x40)
            length := mload(buffer)
        }

        require(
            length + data.length <= capacity,
            "DynamicBuffer: Appending out of bounds."
        );
        appendUnchecked(buffer, data);
    }
}

File 7 of 18 : HelperLib.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

library HelperLib {
    function parseInt(string memory _a)
        internal
        pure
        returns (uint8 _parsedInt)
    {
        bytes memory bresult = bytes(_a);
        uint8 mint = 0;
        for (uint8 i = 0; i < bresult.length; i++) {
            if (
                (uint8(uint8(bresult[i])) >= 48) &&
                (uint8(uint8(bresult[i])) <= 57)
            ) {
                mint *= 10;
                mint += uint8(bresult[i]) - 48;
            }
        }
        return mint;
    }

    function _substring(
        string memory str,
        uint256 startIndex,
        uint256 endIndex
    ) internal pure returns (string memory) {
        bytes memory strBytes = bytes(str);
        bytes memory result = new bytes(endIndex - startIndex);
        for (uint256 i = startIndex; i < endIndex; i++) {
            result[i - startIndex] = strBytes[i];
        }
        return string(result);
    }
}

File 8 of 18 : ERC721AX.sol
// SPDX-License-Identifier: MIT
// Indelible Labs LLC

pragma solidity ^0.8.4;

import "erc721a/contracts/ERC721A.sol";

/**
 * @dev This implements an optional extension of {ERC721} that automatically
 * expires approvals for operators to transfer your tokens after 30 days or
 * the set approval lifespan.
 */
abstract contract ERC721AX is ERC721A {
    // Mapping from owner to operator approvals
    mapping(address => mapping(address => uint)) private _operatorApprovals;
    mapping(address => uint128) public approvalLifespans;

    // Approval lifespan
    uint128 constant public DEFAULT_APPROVAL_LIFESPAN = 30 days;

    /**
     * @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(ERC721A) {
        require(_msgSenderERC721A() != operator, "ERC721: approve to caller");
        uint128 approvalLifespan = approvalLifespans[_msgSenderERC721A()] > 0 ? approvalLifespans[_msgSenderERC721A()] : DEFAULT_APPROVAL_LIFESPAN;
        _operatorApprovals[_msgSenderERC721A()][operator] = approved ? block.timestamp + approvalLifespan : 0;
        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(ERC721A) returns (bool) {
        return _operatorApprovals[owner][operator] > block.timestamp;
    }
    
    /**
     * @dev Set the lifespan of an approval in days.
     */
    function setApprovalLifespanDays(uint128 lifespanDays) public {
        approvalLifespans[msg.sender] = lifespanDays * 1 days;
    }
}

File 9 of 18 : 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 10 of 18 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 12 of 18 : 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 18 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 14 of 18 : 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 15 of 18 : 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 16 of 18 : Base64.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Library to encode strings in Base64.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/Base64.sol)
/// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/Base64.sol)
/// @author Modified from (https://github.com/Brechtpd/base64/blob/main/base64.sol) by Brecht Devos - <[email protected]>.
library Base64 {
    /// @dev Encodes `data` using the base64 encoding described in RFC 4648.
    /// See: https://datatracker.ietf.org/doc/html/rfc4648
    /// @param fileSafe  Whether to replace '+' with '-' and '/' with '_'.
    /// @param noPadding Whether to strip away the padding.
    function encode(bytes memory data, bool fileSafe, bool noPadding)
        internal
        pure
        returns (string memory result)
    {
        /// @solidity memory-safe-assembly
        assembly {
            let dataLength := mload(data)

            if dataLength {
                // Multiply by 4/3 rounded up.
                // The `shl(2, ...)` is equivalent to multiplying by 4.
                let encodedLength := shl(2, div(add(dataLength, 2), 3))

                // Set `result` to point to the start of the free memory.
                result := mload(0x40)

                // Store the table into the scratch space.
                // Offsetted by -1 byte so that the `mload` will load the character.
                // We will rewrite the free memory pointer at `0x40` later with
                // the allocated size.
                // The magic constant 0x0230 will translate "-_" + "+/".
                mstore(0x1f, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdef")
                mstore(0x3f, sub("ghijklmnopqrstuvwxyz0123456789-_", mul(iszero(fileSafe), 0x0230)))

                // Skip the first slot, which stores the length.
                let ptr := add(result, 0x20)
                let end := add(ptr, encodedLength)

                // Run over the input, 3 bytes at a time.
                for {} 1 {} {
                    data := add(data, 3) // Advance 3 bytes.
                    let input := mload(data)

                    // Write 4 bytes. Optimized for fewer stack operations.
                    mstore8(0, mload(and(shr(18, input), 0x3F)))
                    mstore8(1, mload(and(shr(12, input), 0x3F)))
                    mstore8(2, mload(and(shr(6, input), 0x3F)))
                    mstore8(3, mload(and(input, 0x3F)))
                    mstore(ptr, mload(0x00))

                    ptr := add(ptr, 4) // Advance 4 bytes.

                    if iszero(lt(ptr, end)) { break }
                }

                // Allocate the memory for the string.
                // Add 31 and mask with `not(31)` to round the
                // free memory pointer up the next multiple of 32.
                mstore(0x40, and(add(end, 31), not(31)))

                // Equivalent to `o = [0, 2, 1][dataLength % 3]`.
                let o := div(2, mod(dataLength, 3))

                // Offset `ptr` and pad with '='. We can simply write over the end.
                mstore(sub(ptr, o), shl(240, 0x3d3d))
                // Set `o` to zero if there is padding.
                o := mul(iszero(iszero(noPadding)), o)
                // Zeroize the slot after the string.
                mstore(sub(ptr, o), 0)
                // Write the length of the string.
                mstore(result, sub(encodedLength, o))
            }
        }
    }

    /// @dev Encodes `data` using the base64 encoding described in RFC 4648.
    /// Equivalent to `encode(data, false, false)`.
    function encode(bytes memory data) internal pure returns (string memory result) {
        result = encode(data, false, false);
    }

    /// @dev Encodes `data` using the base64 encoding described in RFC 4648.
    /// Equivalent to `encode(data, fileSafe, false)`.
    function encode(bytes memory data, bool fileSafe)
        internal
        pure
        returns (string memory result)
    {
        result = encode(data, fileSafe, false);
    }

    /// @dev Encodes base64 encoded `data`.
    ///
    /// Supports:
    /// - RFC 4648 (both standard and file-safe mode).
    /// - RFC 3501 (63: ',').
    ///
    /// Does not support:
    /// - Line breaks.
    ///
    /// Note: For performance reasons,
    /// this function will NOT revert on invalid `data` inputs.
    /// Outputs for invalid inputs will simply be undefined behaviour.
    /// It is the user's responsibility to ensure that the `data`
    /// is a valid base64 encoded string.
    function decode(string memory data) internal pure returns (bytes memory result) {
        /// @solidity memory-safe-assembly
        assembly {
            let dataLength := mload(data)

            if dataLength {
                let decodedLength := mul(shr(2, dataLength), 3)

                for {} 1 {} {
                    // If padded.
                    if iszero(and(dataLength, 3)) {
                        let t := xor(mload(add(data, dataLength)), 0x3d3d)
                        // forgefmt: disable-next-item
                        decodedLength := sub(
                            decodedLength,
                            add(iszero(byte(30, t)), iszero(byte(31, t)))
                        )
                        break
                    }
                    // If non-padded.
                    decodedLength := add(decodedLength, sub(and(dataLength, 3), 1))
                    break
                }
                result := mload(0x40)

                // Write the length of the bytes.
                mstore(result, decodedLength)

                // Skip the first slot, which stores the length.
                let ptr := add(result, 0x20)
                let end := add(ptr, decodedLength)

                // Load the table into the scratch space.
                // Constants are optimized for smaller bytecode with zero gas overhead.
                // `m` also doubles as the mask of the upper 6 bits.
                let m := 0xfc000000fc00686c7074787c8084888c9094989ca0a4a8acb0b4b8bcc0c4c8cc
                mstore(0x5b, m)
                mstore(0x3b, 0x04080c1014181c2024282c3034383c4044484c5054585c6064)
                mstore(0x1a, 0xf8fcf800fcd0d4d8dce0e4e8ecf0f4)

                for {} 1 {} {
                    // Read 4 bytes.
                    data := add(data, 4)
                    let input := mload(data)

                    // Write 3 bytes.
                    // forgefmt: disable-next-item
                    mstore(ptr, or(
                        and(m, mload(byte(28, input))),
                        shr(6, or(
                            and(m, mload(byte(29, input))),
                            shr(6, or(
                                and(m, mload(byte(30, input))),
                                shr(6, mload(byte(31, input)))
                            ))
                        ))
                    ))

                    ptr := add(ptr, 3)

                    if iszero(lt(ptr, end)) { break }
                }

                // Allocate the memory for the string.
                // Add 31 and mask with `not(31)` to round the
                // free memory pointer up the next multiple of 32.
                mstore(0x40, and(add(end, 31), not(31)))
                // Zeroize the slot after the bytes.
                mstore(end, 0)
                // Restore the zero slot.
                mstore(0x60, 0)
            }
        }
    }
}

File 17 of 18 : LibPRNG.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Library for generating psuedorandom numbers.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/LibPRNG.sol)
library LibPRNG {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                          STRUCTS                           */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev A psuedorandom number state in memory.
    struct PRNG {
        uint256 state;
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                         OPERATIONS                         */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Seeds the `prng` with `state`.
    function seed(PRNG memory prng, uint256 state) internal pure {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(prng, state)
        }
    }

    /// @dev Returns the next psuedorandom uint256.
    /// All bits of the returned uint256 pass the NIST Statistical Test Suite.
    function next(PRNG memory prng) internal pure returns (uint256 result) {
        // We simply use `keccak256` for a great balance between
        // runtime gas costs, bytecode size, and statistical properties.
        //
        // A high-quality LCG with a 32-byte state
        // is only about 30% more gas efficient during runtime,
        // but requires a 32-byte multiplier, which can cause bytecode bloat
        // when this function is inlined.
        //
        // Using this method is about 2x more efficient than
        // `nextRandomness = uint256(keccak256(abi.encode(randomness)))`.
        /// @solidity memory-safe-assembly
        assembly {
            result := keccak256(prng, 0x20)
            mstore(prng, result)
        }
    }

    /// @dev Returns a psuedorandom uint256, uniformly distributed
    /// between 0 (inclusive) and `upper` (exclusive).
    /// If your modulus is big, this method is recommended
    /// for uniform sampling to avoid modulo bias.
    /// For uniform sampling across all uint256 values,
    /// or for small enough moduli such that the bias is neligible,
    /// use {next} instead.
    function uniform(PRNG memory prng, uint256 upper) internal pure returns (uint256 result) {
        /// @solidity memory-safe-assembly
        assembly {
            for {} 1 {} {
                result := keccak256(prng, 0x20)
                mstore(prng, result)
                if iszero(lt(result, mod(sub(0, upper), upper))) { break }
            }
            result := mod(result, upper)
        }
    }

    /// @dev Shuffles the array in-place with Fisher-Yates shuffle.
    function shuffle(PRNG memory prng, uint256[] memory a) internal pure {
        /// @solidity memory-safe-assembly
        assembly {
            let n := mload(a)
            let w := not(0)
            let mask := shr(128, w)
            if n {
                for { a := add(a, 0x20) } 1 {} {
                    // We can just directly use `keccak256`, cuz
                    // the other approaches don't save much.
                    let r := keccak256(prng, 0x20)
                    mstore(prng, r)

                    // Note that there will be a very tiny modulo bias
                    // if the length of the array is not a power of 2.
                    // For all practical purposes, it is negligible
                    // and will not be a fairness or security concern.
                    {
                        let j := add(a, shl(5, mod(shr(128, r), n)))
                        n := add(n, w) // `sub(n, 1)`.
                        if iszero(n) { break }

                        let i := add(a, shl(5, n))
                        let t := mload(i)
                        mstore(i, mload(j))
                        mstore(j, t)
                    }

                    {
                        let j := add(a, shl(5, mod(and(r, mask), n)))
                        n := add(n, w) // `sub(n, 1)`.
                        if iszero(n) { break }

                        let i := add(a, shl(5, n))
                        let t := mload(i)
                        mstore(i, mload(j))
                        mstore(j, t)
                    }
                }
            }
        }
    }

    /// @dev Shuffles the bytes in-place with Fisher-Yates shuffle.
    function shuffle(PRNG memory prng, bytes memory a) internal pure {
        /// @solidity memory-safe-assembly
        assembly {
            let n := mload(a)
            let w := not(0)
            let mask := shr(128, w)
            if n {
                let b := add(a, 0x01)
                for { a := add(a, 0x20) } 1 {} {
                    // We can just directly use `keccak256`, cuz
                    // the other approaches don't save much.
                    let r := keccak256(prng, 0x20)
                    mstore(prng, r)

                    // Note that there will be a very tiny modulo bias
                    // if the length of the array is not a power of 2.
                    // For all practical purposes, it is negligible
                    // and will not be a fairness or security concern.
                    {
                        let o := mod(shr(128, r), n)
                        n := add(n, w) // `sub(n, 1)`.
                        if iszero(n) { break }

                        let t := mload(add(b, n))
                        mstore8(add(a, n), mload(add(b, o)))
                        mstore8(add(a, o), t)
                    }

                    {
                        let o := mod(and(r, mask), n)
                        n := add(n, w) // `sub(n, 1)`.
                        if iszero(n) { break }

                        let t := mload(add(b, n))
                        mstore8(add(a, n), mload(add(b, o)))
                        mstore8(add(a, o), t)
                    }
                }
            }
        }
    }
}

File 18 of 18 : SSTORE2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Read and write to persistent storage at a fraction of the cost.
/// @author Solady (https://github.com/vectorized/solmady/blob/main/src/utils/SSTORE2.sol)
/// @author Saw-mon-and-Natalie (https://github.com/Saw-mon-and-Natalie)
/// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SSTORE2.sol)
/// @author Modified from 0xSequence (https://github.com/0xSequence/sstore2/blob/master/contracts/SSTORE2.sol)
library SSTORE2 {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                         CONSTANTS                          */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev We skip the first byte as it's a STOP opcode,
    /// which ensures the contract can't be called.
    uint256 internal constant DATA_OFFSET = 1;

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                        CUSTOM ERRORS                       */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Unable to deploy the storage contract.
    error DeploymentFailed();

    /// @dev The storage contract address is invalid.
    error InvalidPointer();

    /// @dev Attempt to read outside of the storage contract's bytecode bounds.
    error ReadOutOfBounds();

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                         WRITE LOGIC                        */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Writes `data` into the bytecode of a storage contract and returns its address.
    function write(bytes memory data) internal returns (address pointer) {
        // Note: The assembly block below does not expand the memory.
        /// @solidity memory-safe-assembly
        assembly {
            let originalDataLength := mload(data)

            // Add 1 to data size since we are prefixing it with a STOP opcode.
            let dataSize := add(originalDataLength, DATA_OFFSET)

            /**
             * ------------------------------------------------------------------------------+
             * Opcode      | Mnemonic        | Stack                   | Memory              |
             * ------------------------------------------------------------------------------|
             * 61 codeSize | PUSH2 codeSize  | codeSize                |                     |
             * 80          | DUP1            | codeSize codeSize       |                     |
             * 60 0xa      | PUSH1 0xa       | 0xa codeSize codeSize   |                     |
             * 3D          | RETURNDATASIZE  | 0 0xa codeSize codeSize |                     |
             * 39          | CODECOPY        | codeSize                | [0..codeSize): code |
             * 3D          | RETURNDATASZIE  | 0 codeSize              | [0..codeSize): code |
             * F3          | RETURN          |                         | [0..codeSize): code |
             * 00          | STOP            |                         |                     |
             * ------------------------------------------------------------------------------+
             * @dev Prefix the bytecode with a STOP opcode to ensure it cannot be called.
             * Also PUSH2 is used since max contract size cap is 24,576 bytes which is less than 2 ** 16.
             */
            mstore(
                data,
                or(
                    0x61000080600a3d393df300,
                    // Left shift `dataSize` by 64 so that it lines up with the 0000 after PUSH2.
                    shl(0x40, dataSize)
                )
            )

            // Deploy a new contract with the generated creation code.
            pointer := create(0, add(data, 0x15), add(dataSize, 0xa))

            // If `pointer` is zero, revert.
            if iszero(pointer) {
                // Store the function selector of `DeploymentFailed()`.
                mstore(0x00, 0x30116425)
                // Revert with (offset, size).
                revert(0x1c, 0x04)
            }

            // Restore original length of the variable size `data`.
            mstore(data, originalDataLength)
        }
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                         READ LOGIC                         */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Returns all the `data` from the bytecode of the storage contract at `pointer`.
    function read(address pointer) internal view returns (bytes memory data) {
        /// @solidity memory-safe-assembly
        assembly {
            let pointerCodesize := extcodesize(pointer)
            if iszero(pointerCodesize) {
                // Store the function selector of `InvalidPointer()`.
                mstore(0x00, 0x11052bb4)
                // Revert with (offset, size).
                revert(0x1c, 0x04)
            }
            // Offset all indices by 1 to skip the STOP opcode.
            let size := sub(pointerCodesize, DATA_OFFSET)

            // Get the pointer to the free memory and allocate
            // enough 32-byte words for the data and the length of the data,
            // then copy the code to the allocated memory.
            // Masking with 0xffe0 will suffice, since contract size is less than 16 bits.
            data := mload(0x40)
            mstore(0x40, add(data, and(add(size, 0x3f), 0xffe0)))
            mstore(data, size)
            mstore(add(add(data, 0x20), size), 0) // Zeroize the last slot.
            extcodecopy(pointer, add(data, 0x20), DATA_OFFSET, size)
        }
    }

    /// @dev Returns the `data` from the bytecode of the storage contract at `pointer`,
    /// from the byte at `start`, to the end of the data stored.
    function read(address pointer, uint256 start) internal view returns (bytes memory data) {
        /// @solidity memory-safe-assembly
        assembly {
            let pointerCodesize := extcodesize(pointer)
            if iszero(pointerCodesize) {
                // Store the function selector of `InvalidPointer()`.
                mstore(0x00, 0x11052bb4)
                // Revert with (offset, size).
                revert(0x1c, 0x04)
            }

            // If `!(pointer.code.size > start)`, reverts.
            // This also handles the case where `start + DATA_OFFSET` overflows.
            if iszero(gt(pointerCodesize, start)) {
                // Store the function selector of `ReadOutOfBounds()`.
                mstore(0x00, 0x84eb0dd1)
                // Revert with (offset, size).
                revert(0x1c, 0x04)
            }
            let size := sub(pointerCodesize, add(start, DATA_OFFSET))

            // Get the pointer to the free memory and allocate
            // enough 32-byte words for the data and the length of the data,
            // then copy the code to the allocated memory.
            // Masking with 0xffe0 will suffice, since contract size is less than 16 bits.
            data := mload(0x40)
            mstore(0x40, add(data, and(add(size, 0x3f), 0xffe0)))
            mstore(data, size)
            mstore(add(add(data, 0x20), size), 0) // Zeroize the last slot.
            extcodecopy(pointer, add(data, 0x20), add(start, DATA_OFFSET), size)
        }
    }

    /// @dev Returns the `data` from the bytecode of the storage contract at `pointer`,
    /// from the byte at `start`, to the byte at `end` (exclusive) of the data stored.
    function read(address pointer, uint256 start, uint256 end)
        internal
        view
        returns (bytes memory data)
    {
        /// @solidity memory-safe-assembly
        assembly {
            let pointerCodesize := extcodesize(pointer)
            if iszero(pointerCodesize) {
                // Store the function selector of `InvalidPointer()`.
                mstore(0x00, 0x11052bb4)
                // Revert with (offset, size).
                revert(0x1c, 0x04)
            }

            // If `!(pointer.code.size > end) || (start > end)`, revert.
            // This also handles the cases where
            // `end + DATA_OFFSET` or `start + DATA_OFFSET` overflows.
            if iszero(
                and(
                    gt(pointerCodesize, end), // Within bounds.
                    iszero(gt(start, end)) // Valid range.
                )
            ) {
                // Store the function selector of `ReadOutOfBounds()`.
                mstore(0x00, 0x84eb0dd1)
                // Revert with (offset, size).
                revert(0x1c, 0x04)
            }
            let size := sub(end, start)

            // Get the pointer to the free memory and allocate
            // enough 32-byte words for the data and the length of the data,
            // then copy the code to the allocated memory.
            // Masking with 0xffe0 will suffice, since contract size is less than 16 bits.
            data := mload(0x40)
            mstore(0x40, add(data, and(add(size, 0x3f), 0xffe0)))
            mstore(data, size)
            mstore(add(add(data, 0x20), size), 0) // Zeroize the last slot.
            extcodecopy(pointer, add(data, 0x20), add(start, DATA_OFFSET), size)
        }
    }
}

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

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":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","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":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","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":"COLLECTOR_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_APPROVAL_LIFESPAN","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"layerIndex","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bool","name":"hide","type":"bool"},{"internalType":"bool","name":"useExistingData","type":"bool"},{"internalType":"uint256","name":"existingDataIndex","type":"uint256"}],"internalType":"struct Indelible.TraitDTO[]","name":"traits","type":"tuple[]"}],"name":"addLayer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"layerIndex","type":"uint256"},{"internalType":"uint256","name":"traitIndex","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bool","name":"hide","type":"bool"},{"internalType":"bool","name":"useExistingData","type":"bool"},{"internalType":"uint256","name":"existingDataIndex","type":"uint256"}],"internalType":"struct Indelible.TraitDTO","name":"trait","type":"tuple"}],"name":"addTrait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"approvalLifespans","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collector","type":"address"}],"name":"checkProHolder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractData","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"image","type":"string"},{"internalType":"string","name":"banner","type":"string"},{"internalType":"string","name":"website","type":"string"},{"internalType":"uint256","name":"royalties","type":"uint256"},{"internalType":"string","name":"royaltiesRecipient","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"layerIndex","type":"uint256"},{"internalType":"uint256","name":"traitIndex","type":"uint256"}],"name":"getLinkedTraits","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"hashToMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"hashToSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isContractSealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAllowList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"sealContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setAllowListPrice","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":"uint128","name":"lifespanDays","type":"uint128"}],"name":"setApprovalLifespanDays","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"color","type":"string"}],"name":"setBackgroundColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"image","type":"string"},{"internalType":"string","name":"banner","type":"string"},{"internalType":"string","name":"website","type":"string"},{"internalType":"uint256","name":"royalties","type":"uint256"},{"internalType":"string","name":"royaltiesRecipient","type":"string"}],"internalType":"struct Indelible.ContractData","name":"data","type":"tuple"}],"name":"setContractData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256[]","name":"traitA","type":"uint256[]"},{"internalType":"uint256[]","name":"traitB","type":"uint256[]"}],"internalType":"struct Indelible.LinkedTraitDTO[]","name":"linkedTraits","type":"tuple[]"}],"name":"setLinkedTraits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"placeholder","type":"string"}],"name":"setPlaceholderImage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRandomSeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"renderOffChain","type":"bool"}],"name":"setRenderOfTokenId","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":[],"name":"toggleAllowListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWrapSVG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIdToHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIdToSVG","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":"uint256","name":"layerIndex","type":"uint256"},{"internalType":"uint256","name":"traitIndex","type":"uint256"}],"name":"traitData","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"layerIndex","type":"uint256"},{"internalType":"uint256","name":"traitIndex","type":"uint256"}],"name":"traitDetails","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"},{"internalType":"bool","name":"hide","type":"bool"}],"internalType":"struct Indelible.Trait","name":"","type":"tuple"}],"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"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawRecipients","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"imageUrl","type":"string"},{"internalType":"address","name":"recipientAddress","type":"address"},{"internalType":"uint256","name":"percentage","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

7329fbb84b835f892eba2d331af9278b74c595edf16080526101a0604052785c00b8844beada677a1a02b5a9342d63b4aad9d446336e562760a0908152784076b00a893975d78fb15412d6de1abf4465f7acec3a4c229d60c052786e348011a0990d9e9b4a37a6049a6b886bb1422082d7390f1b60e052786a85f0d665627631fbdee921cb2db12e83e8162d0908f79e67610100527845744b285dc8960f409f532a6ee72c5accc658ec717ac2bac7610120527877ddfc23277b83ad7c771d1f9280b2debabf32c09b81fe349d61014052788fb7fd52610bf479b3ea83e8cb2aa776b50723cd8358eeebdb6101605278297a38f1fde0f7d668131a65f2fa807674502bd329fcc82037610180526200011c90601090600862000ace565b50604080516101408101825260066101008201908152654c617365727360d01b61012083015281528151808301835260058082526409adeeae8d60db1b60208381019190915280840192909252835180850185526004808252631219585960e21b828501528486019190915284518086018652818152634661636560e01b81850152606085015284518086018652818152634579657360e01b818501526080850152845180860186529182526414da1a5c9d60da1b8284015260a0840191909152835180850185529081526329b5b4b760e11b8183015260c08301528251808401909352600a835269109858dad9dc9bdd5b9960b21b9083015260e08101919091526200022e90601990600862000b29565b50601a80546001600160a81b03191674f3daeb3772b00dfb3bbb1ad4fb3494ea6b9be4fe0117905560408051808201909152600b81526a1d1c985b9cdc185c995b9d60aa1b6020820152601b9062000287908262000d28565b507fabfadca4e99033ffb03ea193e998e01c85214f242280797446b3e1db09528eaf601d556040805180820190915260018152603160f81b6020820152601e90620002d3908262000d28565b50604080516020810190915260008152601f90620002f2908262000d28565b506103e86021556014602255661550f7dca70000602355660e35fa931a000060265560146027556040518060e001604052806040518060400160405280600a81526020016929a69c261025a2ab24a760b11b81525081526020016040518060c001604052806098815260200162006e0660989139815260200160405180608001604052806048815260200162006d4d60489139815260200160405180608001604052806047815260200162006d9560479139815260200160405180602001604052806000815250815260200161032081526020016040518060600160405280602a815260200162006ddc602a9139905280516029908190620003f5908262000d28565b50602082015160018201906200040c908262000d28565b506040820151600282019062000423908262000d28565b50606082015160038201906200043a908262000d28565b506080820151600482019062000451908262000d28565b5060a0820151600582015560c0820151600682019062000472908262000d28565b5050503480156200048257600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a81526020016929a69c261025a2ab24a760b11b81525060405180604001604052806004815260200163534d384b60e01b8152508160029081620004eb919062000d28565b506003620004fa828262000d28565b506000805550506daaeb6d7670e522a718067333cd4e3b15620006465780156200059457604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200057557600080fd5b505af11580156200058a573d6000803e3d6000fd5b5050505062000646565b6001600160a01b03821615620005e55760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200055a565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200062c57600080fd5b505af115801562000641573d6000803e3d6000fd5b505050505b50506001600a55620006583362000a7c565b6040805160e0810182526103b2815260186020820152600c918101829052606081019190915260036080820152600260a0820152600160c0820152620006a390601190600762000b82565b50604080516101e08101825260cd815260ba60208201526088918101919091526076606082015260656080820152605860a0820152603560c0820152603360e0820152602a610100820152601461012082015260006101408201819052610160820181905261018082018190526101a082018190526101c08201526200072e90601290600f62000bc6565b50604080516102e0810182526096815260696020820152605f91810191909152605c606082015260566080820152603360a0820152602c60c0820181905260e0820152602961010082015260256101208201526023610140820152601d610160820152601c61018082015260186101a082015260166101c082015260146101e0820181905261020082018190526102208201526010610240820152600b610260820152600a61028082018190526102a082018190526102c0820152620007f990601390601762000bc6565b50604080516102208101825260fa8152607b602082015260709181019190915260646060808301919091526080820152604360a0820152602c60c0820152602960e08201526024610100820152601d610120820152601761014082015260156101608201819052610180820152600e6101a0820152600a6101c082015260086101e082015260056102008201526200089690601490601162000bc6565b506040805160e08101825260aa815260a4602082015260969181019190915260946060820152608e6080820152607c60a0820152606660c0820152620008e190601590600762000bc6565b50604080516102008101825260848152607a602082015260728183015260696060820152604b608082015260a0810191909152603b60c0820152603960e0820152602c6101008201819052610120820152602961014082015260276101608201526022610180820152601a6101a082015260166101c082018190526101e082018190526200097191601062000bc6565b5060408051606081018252610252815261016e6020820152602891810191909152620009a290601790600362000b82565b506040805161016081018252608b8152608960208201526078918101919091526075606082015260706080820152606960a0820152605c60c0820152605160e0820152602e6101008201526029610120820152600a61014082015262000a0d90601890600b62000bc6565b503a43424462000a1f60018462000df4565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6001600160601b03191660c082015260d40160408051601f198184030181529190528051602090910120601c5562000e1c565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000b17579160200282015b8281111562000b1757825182906001600160c81b031690559160200191906001019062000aef565b5062000b2592915062000c09565b5090565b82805482825590600052602060002090810192821562000b74579160200282015b8281111562000b74578251829062000b63908262000d28565b509160200191906001019062000b4a565b5062000b2592915062000c20565b82805482825590600052602060002090810192821562000b17579160200282015b8281111562000b17578251829061ffff1690559160200191906001019062000ba3565b82805482825590600052602060002090810192821562000b17579160200282015b8281111562000b17578251829060ff1690559160200191906001019062000be7565b5b8082111562000b25576000815560010162000c0a565b8082111562000b2557600062000c37828262000c41565b5060010162000c20565b50805462000c4f9062000c99565b6000825580601f1062000c60575050565b601f01602090049060005260206000209081019062000c80919062000c09565b50565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000cae57607f821691505b60208210810362000ccf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000d2357600081815260208120601f850160051c8101602086101562000cfe5750805b601f850160051c820191505b8181101562000d1f5782815560010162000d0a565b5050505b505050565b81516001600160401b0381111562000d445762000d4462000c83565b62000d5c8162000d55845462000c99565b8462000cd5565b602080601f83116001811462000d94576000841562000d7b5750858301515b600019600386901b1c1916600185901b17855562000d1f565b600085815260208120601f198616915b8281101562000dc55788860151825594840194600190910190840162000da4565b508582101562000de45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8181038181111562000e1657634e487b7160e01b600052601160045260246000fd5b92915050565b608051615f1562000e386000396000613c2a0152615f156000f3fe6080604052600436106103d25760003560e01c806368bd580e116101fd578063b32c568011610118578063d5abeb01116100ab578063e8a3d4851161007a578063e8a3d48514610b3d578063e985e9c514610b52578063ea84b59b14610b9a578063f192b14414610bc7578063f2fde38b14610be257600080fd5b8063d5abeb0114610ac4578063dbe9875f14610ada578063dc53fd9214610afa578063dc9867ce14610b1057600080fd5b8063ba41b0c6116100e7578063ba41b0c614610a5e578063bdf7a8e614610a71578063c11feac114610a84578063c87b56dd14610aa457600080fd5b8063b32c5680146109eb578063b456806614610a0b578063b75f1aef14610a2b578063b88d4fde14610a4b57600080fd5b8063876171dc1161019057806395d89b411161015f57806395d89b411461098057806397d194d714610995578063a22cb465146109b5578063a24e5153146109d557600080fd5b8063876171dc146108fd57806389ce30741461092d5780638da5cb5b1461094d5780638fb4e8a91461096b57600080fd5b8063715018a6116101cc578063715018a6146108725780637bddd65b146108875780637cb64759146108a7578063831fb10d146108c757600080fd5b806368bd580e146108085780636c0360eb1461081d5780636df9fa881461083257806370a082311461085257600080fd5b80633ccfd60b116102ed5780635b5a482c11610280578063621a1f741161024f578063621a1f74146107925780636352211e146107b2578063639814e0146107d257806366e33870146107e857600080fd5b80635b5a482c1461070e5780635b92ac0d1461073d5780635d82cf6e146107525780636190e1da1461077257600080fd5b80634ca1a0f2116102bc5780634ca1a0f21461069d57806354214f69146106bd578063542d5041146106d457806355f804b3146106ee57600080fd5b80633ccfd60b1461064b5780634047638d1461066057806342842e0e146106755780634920154b1461068857600080fd5b806318160ddd1161036557806336cd2edd1161033457806336cd2edd146105d857806338f897b8146105ee578063394f22cb146106035780633cca24201461062357600080fd5b806318160ddd1461056e57806323b872dd1461059157806329fc6bae146105a45780632d6b6224146105be57600080fd5b806309dbabca116103a157806309dbabca146104ee5780630ad373f41461050e5780630f3debbe1461052e578063180c2cc01461054e57600080fd5b806301ffc9a71461044c57806306fdde0314610481578063081812fc146104a3578063095ea7b3146104db57600080fd5b366104475760255460ff1661042e5760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b6104456023543461043f91906149c2565b33610c02565b005b600080fd5b34801561045857600080fd5b5061046c6104673660046149ec565b610f0f565b60405190151581526020015b60405180910390f35b34801561048d57600080fd5b50610496610f61565b6040516104789190614a59565b3480156104af57600080fd5b506104c36104be366004614a6c565b610ff3565b6040516001600160a01b039091168152602001610478565b6104456104e9366004614aa1565b611037565b3480156104fa57600080fd5b50610496610509366004614acb565b6110d7565b34801561051a57600080fd5b5061046c610529366004614aed565b61111f565b34801561053a57600080fd5b50610445610549366004614b08565b6111a1565b34801561055a57600080fd5b50610445610569366004614b42565b6111de565b34801561057a57600080fd5b50600154600054035b604051908152602001610478565b61044561059f366004614b98565b611483565b3480156105b057600080fd5b5060285461046c9060ff1681565b3480156105ca57600080fd5b5060255461046c9060ff1681565b3480156105e457600080fd5b5061058360275481565b3480156105fa57600080fd5b506104456115df565b34801561060f57600080fd5b5061044561061e366004614bd4565b6116eb565b34801561062f57600080fd5b50610638611731565b6040516104789796959493929190614bfd565b34801561065757600080fd5b50610445611a8f565b34801561066c57600080fd5b50610445611bce565b610445610683366004614b98565b611bea565b34801561069457600080fd5b50610445611d3b565b3480156106a957600080fd5b506104456106b8366004614a6c565b611d57565b3480156106c957600080fd5b50601c54151561046c565b3480156106e057600080fd5b5060205461046c9060ff1681565b3480156106fa57600080fd5b50610445610709366004614c86565b611d64565b34801561071a57600080fd5b5061072562278d0081565b6040516001600160801b039091168152602001610478565b34801561074957600080fd5b5061046c611dc9565b34801561075e57600080fd5b5061044561076d366004614a6c565b611e0c565b34801561077e57600080fd5b5061044561078d366004614c86565b611e19565b34801561079e57600080fd5b506104966107ad366004614a6c565b611e51565b3480156107be57600080fd5b506104c36107cd366004614a6c565b61229c565b3480156107de57600080fd5b5061058360225481565b3480156107f457600080fd5b50610496610803366004614d82565b6122a7565b34801561081457600080fd5b50610445612440565b34801561082957600080fd5b5061049661247a565b34801561083e57600080fd5b5061044561084d366004614a6c565b612508565b34801561085e57600080fd5b5061058361086d366004614aed565b612515565b34801561087e57600080fd5b50610445612563565b34801561089357600080fd5b506104456108a2366004614a6c565b612575565b3480156108b357600080fd5b506104456108c2366004614a6c565b612582565b3480156108d357600080fd5b506107256108e2366004614aed565b6009602052600090815260409020546001600160801b031681565b34801561090957600080fd5b5061091d610918366004614a6c565b61258f565b6040516104789493929190614dca565b34801561093957600080fd5b50610496610948366004614d82565b6126e9565b34801561095957600080fd5b50600b546001600160a01b03166104c3565b34801561097757600080fd5b50610445612902565b34801561098c57600080fd5b5061049661291e565b3480156109a157600080fd5b506104456109b0366004614e57565b61292d565b3480156109c157600080fd5b506104456109d0366004614eb0565b612cc8565b3480156109e157600080fd5b5061058360265481565b3480156109f757600080fd5b5061046c610a06366004614ee7565b612de4565b348015610a1757600080fd5b50610445610a26366004614f20565b612ede565b348015610a3757600080fd5b50610445610a46366004614c86565b61308a565b610445610a59366004614f61565b61309f565b610445610a6c366004614e57565b6131f7565b610445610a7f366004614e57565b613409565b348015610a9057600080fd5b50610496610a9f366004614a6c565b6134f4565b348015610ab057600080fd5b50610496610abf366004614a6c565b6135a2565b348015610ad057600080fd5b5061058360215481565b348015610ae657600080fd5b50610445610af5366004614fdc565b6137b0565b348015610b0657600080fd5b5061058360235481565b348015610b1c57600080fd5b50610b30610b2b366004614acb565b613856565b6040516104789190615001565b348015610b4957600080fd5b506104966138c1565b348015610b5e57600080fd5b5061046c610b6d366004615045565b6001600160a01b039182166000908152600860209081526040808320939094168252919091522054421090565b348015610ba657600080fd5b50610bba610bb5366004614acb565b61391f565b6040516104789190615078565b348015610bd357600080fd5b506105836602c2ad68fd900081565b348015610bee57600080fd5b50610445610bfd366004614aed565b613a9a565b610c0a611dc9565b610c265760405162461bcd60e51b8152600401610425906150ca565b60005482610c6c5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b6044820152606401610425565b602154610c7984836150f9565b1115610cbd5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b6044820152606401610425565b60255460009060ff16610cd257602654610cd6565b6023545b9050600034610cec6602c2ad68fd9000846150f9565b610cf6908761510c565b602554911415915060ff168015610d185750600b546001600160a01b03163314155b15610e95578015610da457610d2c3361111f565b610d735760405162461bcd60e51b815260206004820152601860248201527726b4b9b9b4b7339031b7b63632b1ba37b913b9903332b29760411b6044820152606401610425565b3460235486610d82919061510c565b14610d9f5760405162461bcd60e51b815260040161042590615123565b610de1565b346602c2ad68fd9000602354610dba91906150f9565b610dc4908761510c565b14610de15760405162461bcd60e51b815260040161042590615123565b60225433600090815260056020526040908190205487911c6001600160401b0316610e0c91906150f9565b1115610e5a5760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f7765640000000000006044820152606401610425565b333214610e955760405162461bcd60e51b8152602060048201526009602482015268454f4173206f6e6c7960b81b6044820152606401610425565b6000610ea26014876149c2565b90506000610eb160148861515a565b905060005b82811015610edb57610ec9876014613b13565b80610ed38161516e565b915050610eb6565b508015610eec57610eec8682613b13565b82158015610ef8575060015b15610f0657610f0687613c11565b50505050505050565b60006301ffc9a760e01b6001600160e01b031983161480610f4057506380ac58cd60e01b6001600160e01b03198316145b80610f5b5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610f7090615187565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9c90615187565b8015610fe95780601f10610fbe57610100808354040283529160200191610fe9565b820191906000526020600020905b815481529060010190602001808311610fcc57829003601f168201915b5050505050905090565b6000610ffe82613ce9565b61101b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006110428261229c565b9050336001600160a01b0382161461107b5761105e8133610b6d565b61107b576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600c60205260409020805460609161111891849081106110fe576110fe6151c1565b6000918252602090912001546001600160a01b0316613d10565b9392505050565b601a546040516370a0823160e01b81526001600160a01b03838116600483015260009261010090041690829082906370a0823190602401602060405180830381865afa158015611173573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119791906151d7565b1515949350505050565b6111a9613d5a565b60205460ff16156111cc5760405162461bcd60e51b8152600401610425906151f0565b8060296111d98282615376565b505050565b6111e6613d5a565b60205460ff16156112095760405162461bcd60e51b8152600401610425906151f0565b60408051606081019091528061121f838061521c565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050908252506020908101906112689084018461521c565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050908252506020016112b260808401606085016154d0565b151590526000848152600d602090815260408083208684529091529020815181906112dd90826154ed565b50602082015160018201906112f290826154ed565b50604091820151600291909101805460ff19169115159190911790556000848152600c60209081528282208054845181840281018401909552808552929392909183018282801561136c57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161134e575b5050505050905081608001602081019061138691906154d0565b156113e057808260a00135815181106113a1576113a16151c1565b60200260200101518184815181106113bb576113bb6151c1565b60200260200101906001600160a01b031690816001600160a01b03168152505061145d565b61142a6113f0604084018461521c565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250613db492505050565b81848151811061143c5761143c6151c1565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6000848152600c60209081526040909120825161147c928401906148e1565b5050505050565b826daaeb6d7670e522a718067333cd4e3b156115ce57336001600160a01b038216036114b9576114b4848484613df6565b6115d9565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611508573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152c91906155a6565b80156115af5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561158b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115af91906155a6565b6115ce57604051633b79c77360e21b8152336004820152602401610425565b6115d9848484613df6565b50505050565b6115e7613d5a565b601c54156116375760405162461bcd60e51b815260206004820152601a60248201527f52616e646f6d207365656420697320616c7265616479207365740000000000006044820152606401610425565b3a4342446116466001846155c3565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6001600160601b03191660c082015260d40160408051601f198184030181529190528051602090910120601c556021547f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c906000906116d1906001906155c3565b6040805192835260208301919091520160405180910390a1565b6116f881620151806155d6565b33600090815260096020526040902080546fffffffffffffffffffffffffffffffff19166001600160801b039290921691909117905550565b60298054819061174090615187565b80601f016020809104026020016040519081016040528092919081815260200182805461176c90615187565b80156117b95780601f1061178e576101008083540402835291602001916117b9565b820191906000526020600020905b81548152906001019060200180831161179c57829003601f168201915b5050505050908060010180546117ce90615187565b80601f01602080910402602001604051908101604052809291908181526020018280546117fa90615187565b80156118475780601f1061181c57610100808354040283529160200191611847565b820191906000526020600020905b81548152906001019060200180831161182a57829003601f168201915b50505050509080600201805461185c90615187565b80601f016020809104026020016040519081016040528092919081815260200182805461188890615187565b80156118d55780601f106118aa576101008083540402835291602001916118d5565b820191906000526020600020905b8154815290600101906020018083116118b857829003601f168201915b5050505050908060030180546118ea90615187565b80601f016020809104026020016040519081016040528092919081815260200182805461191690615187565b80156119635780601f1061193857610100808354040283529160200191611963565b820191906000526020600020905b81548152906001019060200180831161194657829003601f168201915b50505050509080600401805461197890615187565b80601f01602080910402602001604051908101604052809291908181526020018280546119a490615187565b80156119f15780601f106119c6576101008083540402835291602001916119f1565b820191906000526020600020905b8154815290600101906020018083116119d457829003601f168201915b505050505090806005015490806006018054611a0c90615187565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3890615187565b8015611a855780601f10611a5a57610100808354040283529160200191611a85565b820191906000526020600020905b815481529060010190602001808311611a6857829003601f168201915b5050505050905087565b611a97613d5a565b611a9f613f8f565b478060008080611ab7600b546001600160a01b031690565b60305490915015611bb05760005b603054811015611bae5760308181548110611ae257611ae26151c1565b90600052602060002090600402016003015483611aff91906150f9565b9250600060308281548110611b1657611b166151c1565b906000526020600020906004020160020160009054906101000a90046001600160a01b0316905061271060308381548110611b5357611b536151c1565b906000526020600020906004020160030154612710611b7291906155c3565b611b7c908861510c565b611b8691906149c2565b9450611b9b81611b9687896155c3565b613fe8565b5080611ba68161516e565b915050611ac5565b505b479450611bbd8186613fe8565b5050505050611bcc6001600a55565b565b611bd6613d5a565b6025805460ff19811660ff90911615179055565b826daaeb6d7670e522a718067333cd4e3b15611d3057336001600160a01b03821603611c1b576114b4848484614101565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611c6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8e91906155a6565b8015611d115750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611ced573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1191906155a6565b611d3057604051633b79c77360e21b8152336004820152602401610425565b6115d9848484614101565b611d43613d5a565b601a805460ff19811660ff90911615179055565b611d5f613d5a565b602755565b611d6c613d5a565b6024611d798284836152bd565b507f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c60006001602154611dac91906155c3565b604080519283526020830191909152015b60405180910390a15050565b6000602154611dd760005490565b108015611e07575060255460ff1680611df2575060285460ff165b80611e075750600b546001600160a01b031633145b905090565b611e14613d5a565b602355565b611e21613d5a565b60205460ff1615611e445760405162461bcd60e51b8152600401610425906151f0565b601b6111d98284836152bd565b6060601c54600003611ea55760405162461bcd60e51b815260206004820152601b60248201527f436f6c6c656374696f6e20686173206e6f742072657665616c656400000000006044820152606401610425565b611eae82613ce9565b611eea5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610425565b6000611f18611efb6008600461510c565b604080518281016060018252910181526000602090910190815290565b90506000611f258461411c565b604080516008808252610120820190925291925060009190602082016101008036833750506040805160088082526101208201909252929350600092915060208201610100803683370190505090506000602154601c54611f86919061515a565b905060005b6008811015612168576000848281518110611fa857611fa86151c1565b60200260200101519050838281518110611fc457611fc46151c1565b60200260200101511515600015150361205457600060215460108481548110611fef57611fef6151c1565b906000526020600020015485858a61200791906150f9565b61201191906150f9565b61201b919061510c565b612025919061515a565b905061203181846141d6565b915081868481518110612046576120466151c1565b602002602001018181525050505b6000828152600f6020908152604080832084845290915290205415612155576000828152600f6020908152604080832084845290915290208054600190811061209f5761209f6151c1565b6000918252602080832090910154848352600f825260408084208585529092529082208054919288926120d4576120d46151c1565b9060005260206000200154815181106120ef576120ef6151c1565b6020908102919091018101919091526000838152600f825260408082208483529092529081208054600192879291612129576121296151c1565b906000526020600020015481518110612144576121446151c1565b911515602092830291909101909101525b50806121608161516e565b915050611f8b565b5060005b835181101561229057600a848281518110612189576121896151c1565b602002602001015110156121c057604080518082019091526002815261030360f41b60208201526121bb908790614272565b612205565b60648482815181106121d4576121d46151c1565b60200260200101511015612205576040805180820190915260018152600360fc1b6020820152612205908790614272565b6103e784828151811061221a5761221a6151c1565b602002602001015111156122525760408051808201909152600381526239393960e81b602082015261224d908790614272565b61227e565b61227e61227785838151811061226a5761226a6151c1565b60200260200101516142f7565b8790614272565b806122888161516e565b91505061216c565b50939695505050505050565b6000610f5b8261433b565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b918301919091526060916122e9908290614272565b6000805b600881101561243757600061232a6123258761230a85600361510c565b61231586600361510c565b6123209060036150f9565b6143a2565b61446e565b6000838152600d6020908152604080832060ff9485168085529252822060020154909350909116151590036123ef578215612382576040805180820190915260018152600b60fa1b6020820152612382908590614272565b6123e060198381548110612398576123986151c1565b60009182526020808320868452600d8252604080852087865283529384902093516123c99493909101929101615674565b60408051601f198184030181529190528590614272565b8215156000036123ef57600192505b6123fb600160086155c3565b8203612424576040805180820190915260018152605d60f81b6020820152612424908590614272565b508061242f8161516e565b9150506122ed565b50909392505050565b60205460ff16156124635760405162461bcd60e51b8152600401610425906151f0565b61246b613d5a565b6020805460ff19166001179055565b6024805461248790615187565b80601f01602080910402602001604051908101604052809291908181526020018280546124b390615187565b80156125005780601f106124d557610100808354040283529160200191612500565b820191906000526020600020905b8154815290600101906020018083116124e357829003601f168201915b505050505081565b612510613d5a565b602655565b60006001600160a01b03821661253e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61256b613d5a565b611bcc600061452c565b61257d613d5a565b602255565b61258a613d5a565b601d55565b6030818154811061259f57600080fd5b90600052602060002090600402016000915090508060000180546125c290615187565b80601f01602080910402602001604051908101604052809291908181526020018280546125ee90615187565b801561263b5780601f106126105761010080835404028352916020019161263b565b820191906000526020600020905b81548152906001019060200180831161261e57829003601f168201915b50505050509080600101805461265090615187565b80601f016020809104026020016040519081016040528092919081815260200182805461267c90615187565b80156126c95780601f1061269e576101008083540402835291602001916126c9565b820191906000526020600020905b8154815290600101906020018083116126ac57829003601f168201915b50505050600283015460039093015491926001600160a01b031691905084565b60408051620200608101909152620200408152600060209091018181526060919061272d6040518060c0016040528060818152602001615e5f608191398290614272565b612759601b60405160200161274291906156ca565b60408051601f198184030181529190528290614272565b60005b612768600160086155c3565b8110156128245761278c6123258661278184600361510c565b61231585600361510c565b60ff169250612812600d600083815260200190815260200160002060008581526020019081526020016000206001016127ea6127e5600c600086815260200190815260200160002087815481106110fe576110fe6151c1565b61457e565b6040516020016127fb9291906156fc565b60408051601f198184030181529190528390614272565b8061281c8161516e565b91505061275c565b5061284f61232585600361283960088261510c565b61284391906155c3565b6123206008600361510c565b60ff1691506128d1600d6000612867600160086155c3565b815260200190815260200160002060008481526020019081526020016000206001016128c06127e5600c6000600160086128a191906155c3565b815260200190815260200160002086815481106110fe576110fe6151c1565b604051602001612742929190615756565b6128da8161457e565b6040516020016128ea91906158ba565b60405160208183030381529060405292505050919050565b61290a613d5a565b6028805460ff19811660ff90911615179055565b606060038054610f7090615187565b612935613d5a565b60205460ff16156129585760405162461bcd60e51b8152600401610425906151f0565b806011846008811061296c5761296c6151c1565b0154146129bb5760405162461bcd60e51b815260206004820152601a60248201527f547261697473206c656e67746820697320696e636f72726563740000000000006044820152606401610425565b6000816001600160401b038111156129d5576129d5614cf7565b6040519080825280602002602001820160405280156129fe578160200160208202803683370190505b50905060005b82811015612ca857838382818110612a1e57612a1e6151c1565b9050602002810190612a3091906158ff565b612a419060a08101906080016154d0565b15612abe5781848483818110612a5957612a596151c1565b9050602002810190612a6b91906158ff565b60a0013581518110612a7f57612a7f6151c1565b6020026020010151828281518110612a9957612a996151c1565b60200260200101906001600160a01b031690816001600160a01b031681525050612b26565b612af3848483818110612ad357612ad36151c1565b9050602002810190612ae591906158ff565b6113f090604081019061521c565b828281518110612b0557612b056151c1565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6040518060600160405280858584818110612b4357612b436151c1565b9050602002810190612b5591906158ff565b612b5f908061521c565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505090825250602001858584818110612bab57612bab6151c1565b9050602002810190612bbd91906158ff565b612bcb90602081019061521c565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505090825250602001858584818110612c1757612c176151c1565b9050602002810190612c2991906158ff565b612c3a9060808101906060016154d0565b151590526000868152600d60209081526040808320858452909152902081518190612c6590826154ed565b5060208201516001820190612c7a90826154ed565b50604091909101516002909101805460ff191691151591909117905580612ca08161516e565b915050612a04565b506000848152600c60209081526040909120825161147c928401906148e1565b6001600160a01b0382163303612d205760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610425565b336000908152600960205260408120546001600160801b0316612d465762278d00612d60565b336000908152600960205260409020546001600160801b03165b905081612d6e576000612d81565b612d816001600160801b038216426150f9565b3360008181526008602090815260408083206001600160a01b03891680855290835292819020949094559251851515815290927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000612e5883838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601d546040516001600160601b031960608b901b16602082015290925060340190505b6040516020818303038152906040528051906020012061458c565b80612ed65750612ed6838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516001600160601b031960608a901b1660208201527fc9e317826dbbd1cfb5121cd14f5a918d94e68798130ece0ccd1550653a4e74fd92506034019050612e3d565b949350505050565b612ee6613d5a565b60205460ff1615612f095760405162461bcd60e51b8152600401610425906151f0565b60005b818110156111d9576040518060400160405280848484818110612f3157612f316151c1565b9050602002810190612f43919061591f565b612f51906020810190615935565b6000818110612f6257612f626151c1565b905060200201358152602001848484818110612f8057612f806151c1565b9050602002810190612f92919061591f565b612fa0906020810190615935565b6001818110612fb157612fb16151c1565b90506020020135815250600f6000858585818110612fd157612fd16151c1565b9050602002810190612fe3919061591f565b612fed9080615935565b6000818110612ffe57612ffe6151c1565b9050602002013581526020019081526020016000206000858585818110613027576130276151c1565b9050602002810190613039919061591f565b6130439080615935565b6001818110613054576130546151c1565b905060200201358152602001908152602001600020906002613077929190614946565b50806130828161516e565b915050612f0c565b613092613d5a565b601f6111d98284836152bd565b836daaeb6d7670e522a718067333cd4e3b156131eb57336001600160a01b038216036130d6576130d1858585856145a2565b61147c565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015613125573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061314991906155a6565b80156131cc5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156131a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131cc91906155a6565b6131eb57604051633b79c77360e21b8152336004820152602401610425565b61147c858585856145a2565b6131ff613f8f565b613207611dc9565b6132235760405162461bcd60e51b8152600401610425906150ca565b60255460ff161580156132415750600b546001600160a01b03163314155b156133f5576000346602c2ad68fd900060265461325e91906150f9565b613268908661510c565b14801591506132f25761327a3361111f565b6132c15760405162461bcd60e51b815260206004820152601860248201527726b4b9b9b4b7339031b7b63632b1ba37b913b9903332b29760411b6044820152606401610425565b34602654856132d0919061510c565b146132ed5760405162461bcd60e51b815260040161042590615123565b61332f565b346602c2ad68fd900060265461330891906150f9565b613312908661510c565b1461332f5760405162461bcd60e51b815260040161042590615123565b61333a338484612de4565b61337a5760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b6044820152606401610425565b60275433600090815260056020526040908190205486911c6001600160401b03166133a591906150f9565b11156133f35760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f7765640000000000006044820152606401610425565b505b6133ff8333610c02565b6111d96001600a55565b613411613f8f565b613419611dc9565b6134355760405162461bcd60e51b8152600401610425906150ca565b60255460ff16806134505750600b546001600160a01b031633145b61349c5760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f7420616374697665000000006044820152606401610425565b60005b818110156134e9576134d7848484848181106134bd576134bd6151c1565b90506020020160208101906134d29190614aed565b610c02565b806134e18161516e565b91505061349f565b506111d96001600a55565b6060601c546000146135115761350c61094883611e51565b610f5b565b601f805461351e90615187565b80601f016020809104026020016040519081016040528092919081815260200182805461354a90615187565b80156135975780601f1061356c57610100808354040283529160200191613597565b820191906000526020600020905b81548152906001019060200180831161357a57829003601f168201915b505050505092915050565b60606135ad82613ce9565b6135e95760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610425565b60408051620200608101909152620200408152600060209091019081526136286029613614856142f7565b604051612742929190602a9060200161597e565b601c5460000361364c57613647601f60405160200161274291906159f8565b613780565b600061365784611e51565b905060006024805461366890615187565b905011801561368557506000848152600e602052604090205460ff165b156136b3576136ae6024613698866142f7565b83601e6040516020016127fb9493929190615a28565b613762565b604080516020810190915260008152601a5460ff16156137295760006136d8836126e9565b9050613702816040516020016136ee9190615ab3565b60405160208183030381529060405261457e565b60405160200161371291906158ba565b604051602081830303815290604052915050613735565b613732826126e9565b90505b613760816040516020016137499190615b9e565b60408051601f198184030181529190528490614272565b505b61377e61376e826122a7565b6040516020016127fb9190615be1565b505b6137898161457e565b6040516020016137999190615c22565b604051602081830303815290604052915050919050565b6137b98261229c565b6001600160a01b0316336001600160a01b03161461380b5760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b6044820152606401610425565b6000828152600e6020908152604091829020805460ff191684151517905590518381527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79101611dbd565b6000828152600f602090815260408083208484528252918290208054835181840281018401909452808452606093928301828280156138b457602002820191906000526020600020905b8154815260200190600101908083116138a0575b5050505050905092915050565b602e546060906138fb90602990602a90602b90602c90602d906138e3906142f7565b6040516136ee96959493929190602f90602001615c67565b60405160200161390b9190615c22565b604051602081830303815290604052905090565b604080516060808201835280825260208201526000918101919091526000838152600d602090815260408083208584529091529081902081516060810190925280548290829061396e90615187565b80601f016020809104026020016040519081016040528092919081815260200182805461399a90615187565b80156139e75780601f106139bc576101008083540402835291602001916139e7565b820191906000526020600020905b8154815290600101906020018083116139ca57829003601f168201915b50505050508152602001600182018054613a0090615187565b80601f0160208091040260200160405190810160405280929190818152602001828054613a2c90615187565b8015613a795780601f10613a4e57610100808354040283529160200191613a79565b820191906000526020600020905b815481529060010190602001808311613a5c57829003601f168201915b50505091835250506002919091015460ff1615156020909101529392505050565b613aa2613d5a565b6001600160a01b038116613b075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610425565b613b108161452c565b50565b6000805490829003613b385760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114613be757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101613baf565b5081600003613c0857604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000613c24826602c2ad68fd900061510c565b905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168260405160006040518083038185875af1925050503d8060008114613c93576040519150601f19603f3d011682016040523d82523d6000602084013e613c98565b606091505b50509050806111d95760405162461bcd60e51b815260206004820152601c60248201527f4661696c656420746f2073656e6420636f6c6c6563746f7220666565000000006044820152606401610425565b6000805482108015610f5b575050600090815260046020526040902054600160e01b161590565b6060813b80613d27576311052bb46000526004601cfd5b600181039050604051915061ffe0603f820116820160405280825260008160208401015280600160208401853c50919050565b600b546001600160a01b03163314611bcc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610425565b60008151600181018060401b6a61000080600a3d393df300178452600a8101601585016000f092505081613df05763301164256000526004601cfd5b90915290565b6000613e018261433b565b9050836001600160a01b0316816001600160a01b031614613e345760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417613e8157613e648633610b6d565b613e8157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516613ea857604051633a954ecd60e21b815260040160405180910390fd5b8015613eb357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003613f4557600184016000818152600460205260408120549003613f43576000548114613f435760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6002600a5403613fe15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610425565b6002600a55565b804710156140385760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610425565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614085576040519150601f19603f3d011682016040523d82523d6000602084013e61408a565b606091505b50509050806111d95760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610425565b6111d98383836040518060200160405280600081525061309f565b6000806021546001600160401b0381111561413957614139614cf7565b604051908082528060200260200182016040528015614162578160200160208202803683370190505b50905060005b6021548110156141985780828281518110614185576141856151c1565b6020908102919091010152600101614168565b506040805160208101909152601c5481526141b381836145e6565b8184815181106141c5576141c56151c1565b602002602001015192505050919050565b600080805b601184600881106141ee576141ee6151c1565b01548110156104475760006011856008811061420c5761420c6151c1565b01828154811061421e5761421e6151c1565b90600052602060002001549050828610158015614243575061424081846150f9565b86105b1561425257509150610f5b9050565b61425c81846150f9565b925050808061426a9061516e565b9150506141db565b601f1982015182518251603f1990920191829061428f90836150f9565b11156142ed5760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b6064820152608401610425565b6115d98484614661565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806143115750819003601f19909101908152919050565b6000816000548110156143895760008181526004602052604081205490600160e01b82169003614387575b80600003611118575060001901600081815260046020526040902054614366565b505b604051636f96cda160e11b815260040160405180910390fd5b60608360006143b185856155c3565b6001600160401b038111156143c8576143c8614cf7565b6040519080825280601f01601f1916602001820160405280156143f2576020820181803683370190505b509050845b8481101561446457828181518110614411576144116151c1565b01602001516001600160f81b0319168261442b88846155c3565b8151811061443b5761443b6151c1565b60200101906001600160f81b031916908160001a9053508061445c8161516e565b9150506143f7565b5095945050505050565b60008181805b82518160ff161015614524576030838260ff1681518110614497576144976151c1565b016020015160f81c108015906144ca57506039838260ff16815181106144bf576144bf6151c1565b016020015160f81c11155b15614512576144da600a83615d90565b91506030838260ff16815181106144f3576144f36151c1565b0160200151614505919060f81c615db3565b61450f9083615dcc565b91505b8061451c81615de5565b915050614474565b509392505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060610f5b82600080614697565b6000826145998584614782565b14949350505050565b6145ad848484611483565b6001600160a01b0383163b156115d9576145c9848484846147c7565b6115d9576040516368d2bf6b60e11b815260040160405180910390fd5b80516000196001600160801b03821561147c576020840193505b6020852080865282840193608082901c0660051b85018461462257505061147c565b600585811b8701805183519091529091528385019482841606901b85018461464b57505061147c565b600585901b860180518251909152905250614600565b8051602082019150808201602084510184015b8184101561468c578351815260209384019301614674565b505082510190915250565b606083518015614524576003600282010460021b60405192507f4142434445464748494a4b4c4d4e4f505152535455565758595a616263646566601f526102308515027f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392d5f03603f52602083018181015b6003880197508751603f8160121c1651600053603f81600c1c1651600153603f8160061c1651600253603f81165160035350600051825260048201915080821061470757601f01601f1916604052613d3d60f01b60038406600204808303919091526000861515909102918290035290038252509392505050565b600081815b8451811015614524576147b3828683815181106147a6576147a66151c1565b60200260200101516148b2565b9150806147bf8161516e565b915050614787565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906147fc903390899088908890600401615e04565b6020604051808303816000875af1925050508015614837575060408051601f3d908101601f1916820190925261483491810190615e41565b60015b614895573d808015614865576040519150601f19603f3d011682016040523d82523d6000602084013e61486a565b606091505b50805160000361488d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008183106148ce576000828152602084905260409020611118565b6000838152602083905260409020611118565b828054828255906000526020600020908101928215614936579160200282015b8281111561493657825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190614901565b50614942929150614981565b5090565b828054828255906000526020600020908101928215614936579160200282015b82811115614936578251825591602001919060010190614966565b5b808211156149425760008155600101614982565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826149d1576149d1614996565b500490565b6001600160e01b031981168114613b1057600080fd5b6000602082840312156149fe57600080fd5b8135611118816149d6565b60005b83811015614a24578181015183820152602001614a0c565b50506000910152565b60008151808452614a45816020860160208601614a09565b601f01601f19169290920160200192915050565b6020815260006111186020830184614a2d565b600060208284031215614a7e57600080fd5b5035919050565b80356001600160a01b0381168114614a9c57600080fd5b919050565b60008060408385031215614ab457600080fd5b614abd83614a85565b946020939093013593505050565b60008060408385031215614ade57600080fd5b50508035926020909101359150565b600060208284031215614aff57600080fd5b61111882614a85565b600060208284031215614b1a57600080fd5b81356001600160401b03811115614b3057600080fd5b820160e0818503121561111857600080fd5b600080600060608486031215614b5757600080fd5b833592506020840135915060408401356001600160401b03811115614b7b57600080fd5b840160c08187031215614b8d57600080fd5b809150509250925092565b600080600060608486031215614bad57600080fd5b614bb684614a85565b9250614bc460208501614a85565b9150604084013590509250925092565b600060208284031215614be657600080fd5b81356001600160801b038116811461111857600080fd5b60e081526000614c1060e083018a614a2d565b8281036020840152614c22818a614a2d565b90508281036040840152614c368189614a2d565b90508281036060840152614c4a8188614a2d565b90508281036080840152614c5e8187614a2d565b90508460a084015282810360c0840152614c788185614a2d565b9a9950505050505050505050565b60008060208385031215614c9957600080fd5b82356001600160401b0380821115614cb057600080fd5b818501915085601f830112614cc457600080fd5b813581811115614cd357600080fd5b866020828501011115614ce557600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115614d2757614d27614cf7565b604051601f8501601f19908116603f01168101908282118183101715614d4f57614d4f614cf7565b81604052809350858152868686011115614d6857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215614d9457600080fd5b81356001600160401b03811115614daa57600080fd5b8201601f81018413614dbb57600080fd5b612ed684823560208401614d0d565b608081526000614ddd6080830187614a2d565b8281036020840152614def8187614a2d565b6001600160a01b0395909516604084015250506060015292915050565b60008083601f840112614e1e57600080fd5b5081356001600160401b03811115614e3557600080fd5b6020830191508360208260051b8501011115614e5057600080fd5b9250929050565b600080600060408486031215614e6c57600080fd5b8335925060208401356001600160401b03811115614e8957600080fd5b614e9586828701614e0c565b9497909650939450505050565b8015158114613b1057600080fd5b60008060408385031215614ec357600080fd5b614ecc83614a85565b91506020830135614edc81614ea2565b809150509250929050565b600080600060408486031215614efc57600080fd5b614f0584614a85565b925060208401356001600160401b03811115614e8957600080fd5b60008060208385031215614f3357600080fd5b82356001600160401b03811115614f4957600080fd5b614f5585828601614e0c565b90969095509350505050565b60008060008060808587031215614f7757600080fd5b614f8085614a85565b9350614f8e60208601614a85565b92506040850135915060608501356001600160401b03811115614fb057600080fd5b8501601f81018713614fc157600080fd5b614fd087823560208401614d0d565b91505092959194509250565b60008060408385031215614fef57600080fd5b823591506020830135614edc81614ea2565b6020808252825182820181905260009190848201906040850190845b818110156150395783518352928401929184019160010161501d565b50909695505050505050565b6000806040838503121561505857600080fd5b61506183614a85565b915061506f60208401614a85565b90509250929050565b6020815260008251606060208401526150946080840182614a2d565b90506020840151601f198483030160408501526150b18282614a2d565b9150506040840151151560608401528091505092915050565b6020808252601590820152744d696e74696e67206973206e6f742061637469766560581b604082015260600190565b80820180821115610f5b57610f5b6149ac565b8082028115828204841417610f5b57610f5b6149ac565b6020808252601e908201527f496e636f727265637420616d6f756e74206f662065746865722073656e740000604082015260600190565b60008261516957615169614996565b500690565b600060018201615180576151806149ac565b5060010190565b600181811c9082168061519b57607f821691505b6020821081036151bb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156151e957600080fd5b5051919050565b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b6000808335601e1984360301811261523357600080fd5b8301803591506001600160401b0382111561524d57600080fd5b602001915036819003821315614e5057600080fd5b601f8211156111d957600081815260208120601f850160051c810160208610156152895750805b601f850160051c820191505b81811015613f8757828155600101615295565b600019600383901b1c191660019190911b1790565b6001600160401b038311156152d4576152d4614cf7565b6152e8836152e28354615187565b83615262565b6000601f84116001811461531657600085156153045750838201355b61530e86826152a8565b84555061147c565b600083815260209020601f19861690835b828110156153475786850135825560209485019460019092019101615327565b50868210156153645760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b615380828361521c565b6001600160401b0381111561539757615397614cf7565b6153ab816153a58554615187565b85615262565b6000601f8211600181146153d957600083156153c75750838201355b6153d184826152a8565b865550615433565b600085815260209020601f19841690835b8281101561540a57868501358255602094850194600190920191016153ea565b50848210156154275760001960f88660031b161c19848701351681555b505060018360011b0185555b50505050615444602083018361521c565b6154528183600186016152bd565b5050615461604083018361521c565b61546f8183600286016152bd565b505061547e606083018361521c565b61548c8183600386016152bd565b505061549b608083018361521c565b6154a98183600486016152bd565b505060a082013560058201556154c260c083018361521c565b6115d98183600686016152bd565b6000602082840312156154e257600080fd5b813561111881614ea2565b81516001600160401b0381111561550657615506614cf7565b61551a816155148454615187565b84615262565b602080601f83116001811461554957600084156155375750858301515b61554185826152a8565b865550613f87565b600085815260208120601f198616915b8281101561557857888601518255948401946001909101908401615559565b50858210156155965787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156155b857600080fd5b815161111881614ea2565b81810381811115610f5b57610f5b6149ac565b6001600160801b038181168382160280821691908281146155f9576155f96149ac565b505092915050565b6000815461560e81615187565b60018281168015615626576001811461563b5761566a565b60ff198416875282151583028701945061566a565b8560005260208060002060005b858110156156615781548a820152908401908201615648565b50505082870194505b5050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b81526000615698600f830185615601565b6a1116113b30b63ab2911d1160a91b81526156b6600b820185615601565b61227d60f01b815260020195945050505050565b60006156d68284615601565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b815260006157166005830185615601565b670ed8985cd94d8d0b60c21b81528351615737816008840160208801614a09565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b815260006157706005830185615601565b670ed8985cd94d8d0b60c21b81528351615791816008840160208801614a09565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152600082516158f281601a850160208701614a09565b91909101601a0192915050565b6000823560be1983360301811261591557600080fd5b9190910192915050565b60008235603e1983360301811261591557600080fd5b6000808335601e1984360301811261594c57600080fd5b8301803591506001600160401b0382111561596657600080fd5b6020019150600581901b3603821315614e5057600080fd5b683d913730b6b2911d1160b91b8152600061599c6009830186615601565b61202360f01b815284516159b7816002840160208901614a09565b701116113232b9b1b934b83a34b7b7111d1160791b600292909101918201526159e36013820185615601565b61088b60f21b81526002019695505050505050565b681134b6b0b3b2911d1160b91b81526000615a166009830184615601565b61227d60f01b81526002019392505050565b681134b6b0b3b2911d1160b91b81526000615a466009830187615601565b8551615a56818360208a01614a09565b643f646e613d60d81b91019081528451615a77816005840160208901614a09565b6a266e6574776f726b49643d60a81b60059290910191820152615a9d6010820185615601565b61088b60f21b8152600201979650505050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b608082015260008251615b77816091850160208701614a09565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b6d1134b6b0b3b2afb230ba30911d1160911b81528151600090615bc881600e850160208701614a09565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b81528151600090615c0a81600d850160208701614a09565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251615c5a81601d850160208701614a09565b91909101601d0192915050565b683d913730b6b2911d1160b91b81526000615c85600983018a615601565b701116113232b9b1b934b83a34b7b7111d1160791b8152615ca9601182018a615601565b6a11161134b6b0b3b2911d1160a91b81529050615cc9600b820189615601565b6b1116113130b73732b9111d1160a11b81529050615cea600c820188615601565b7211161132bc3a32b93730b62fb634b735911d1160691b81529050615d126013820187615601565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a0000000081528451615d4a81601c840160208901614a09565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c9290910191820152615d77602e820185615601565b61227d60f01b81526002019a9950505050505050505050565b60ff8181168382160290811690818114615dac57615dac6149ac565b5092915050565b60ff8281168282160390811115610f5b57610f5b6149ac565b60ff8181168382160190811115610f5b57610f5b6149ac565b600060ff821660ff8103615dfb57615dfb6149ac565b60010192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615e3790830184614a2d565b9695505050505050565b600060208284031215615e5357600080fd5b8151611118816149d656fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723aa2646970667358221220a5888869b875a733ae22605caf6b500248853d1bce554c810e85aad53463349164736f6c6343000811003368747470733a2f2f66696c65732e696e64656c69626c652e78797a2f70726f66696c652f36393839663363322d323039302d343730312d613763362d31313033613664343562613368747470733a2f2f66696c65732e696e64656c69626c652e78797a2f62616e6e65722f36393839663363322d323039302d343730312d613763362d313130336136643435626133307833324437303833304538376436414666646430656337426332323339454536373246323966313136534d384c204b4556494e2069732061207472696275746520746f204f6e636861696e4b6576696e206f6e20363420706978656c7320207c202038783820207c202031303025206f6e2d636861696e207c20205468652073696d706c6963697479206f6620706978656c73206372656174657320726f6f6d20666f7220696e746572707265746174696f6e202620696d6167696e6174696f6e

Deployed Bytecode

0x6080604052600436106103d25760003560e01c806368bd580e116101fd578063b32c568011610118578063d5abeb01116100ab578063e8a3d4851161007a578063e8a3d48514610b3d578063e985e9c514610b52578063ea84b59b14610b9a578063f192b14414610bc7578063f2fde38b14610be257600080fd5b8063d5abeb0114610ac4578063dbe9875f14610ada578063dc53fd9214610afa578063dc9867ce14610b1057600080fd5b8063ba41b0c6116100e7578063ba41b0c614610a5e578063bdf7a8e614610a71578063c11feac114610a84578063c87b56dd14610aa457600080fd5b8063b32c5680146109eb578063b456806614610a0b578063b75f1aef14610a2b578063b88d4fde14610a4b57600080fd5b8063876171dc1161019057806395d89b411161015f57806395d89b411461098057806397d194d714610995578063a22cb465146109b5578063a24e5153146109d557600080fd5b8063876171dc146108fd57806389ce30741461092d5780638da5cb5b1461094d5780638fb4e8a91461096b57600080fd5b8063715018a6116101cc578063715018a6146108725780637bddd65b146108875780637cb64759146108a7578063831fb10d146108c757600080fd5b806368bd580e146108085780636c0360eb1461081d5780636df9fa881461083257806370a082311461085257600080fd5b80633ccfd60b116102ed5780635b5a482c11610280578063621a1f741161024f578063621a1f74146107925780636352211e146107b2578063639814e0146107d257806366e33870146107e857600080fd5b80635b5a482c1461070e5780635b92ac0d1461073d5780635d82cf6e146107525780636190e1da1461077257600080fd5b80634ca1a0f2116102bc5780634ca1a0f21461069d57806354214f69146106bd578063542d5041146106d457806355f804b3146106ee57600080fd5b80633ccfd60b1461064b5780634047638d1461066057806342842e0e146106755780634920154b1461068857600080fd5b806318160ddd1161036557806336cd2edd1161033457806336cd2edd146105d857806338f897b8146105ee578063394f22cb146106035780633cca24201461062357600080fd5b806318160ddd1461056e57806323b872dd1461059157806329fc6bae146105a45780632d6b6224146105be57600080fd5b806309dbabca116103a157806309dbabca146104ee5780630ad373f41461050e5780630f3debbe1461052e578063180c2cc01461054e57600080fd5b806301ffc9a71461044c57806306fdde0314610481578063081812fc146104a3578063095ea7b3146104db57600080fd5b366104475760255460ff1661042e5760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b6104456023543461043f91906149c2565b33610c02565b005b600080fd5b34801561045857600080fd5b5061046c6104673660046149ec565b610f0f565b60405190151581526020015b60405180910390f35b34801561048d57600080fd5b50610496610f61565b6040516104789190614a59565b3480156104af57600080fd5b506104c36104be366004614a6c565b610ff3565b6040516001600160a01b039091168152602001610478565b6104456104e9366004614aa1565b611037565b3480156104fa57600080fd5b50610496610509366004614acb565b6110d7565b34801561051a57600080fd5b5061046c610529366004614aed565b61111f565b34801561053a57600080fd5b50610445610549366004614b08565b6111a1565b34801561055a57600080fd5b50610445610569366004614b42565b6111de565b34801561057a57600080fd5b50600154600054035b604051908152602001610478565b61044561059f366004614b98565b611483565b3480156105b057600080fd5b5060285461046c9060ff1681565b3480156105ca57600080fd5b5060255461046c9060ff1681565b3480156105e457600080fd5b5061058360275481565b3480156105fa57600080fd5b506104456115df565b34801561060f57600080fd5b5061044561061e366004614bd4565b6116eb565b34801561062f57600080fd5b50610638611731565b6040516104789796959493929190614bfd565b34801561065757600080fd5b50610445611a8f565b34801561066c57600080fd5b50610445611bce565b610445610683366004614b98565b611bea565b34801561069457600080fd5b50610445611d3b565b3480156106a957600080fd5b506104456106b8366004614a6c565b611d57565b3480156106c957600080fd5b50601c54151561046c565b3480156106e057600080fd5b5060205461046c9060ff1681565b3480156106fa57600080fd5b50610445610709366004614c86565b611d64565b34801561071a57600080fd5b5061072562278d0081565b6040516001600160801b039091168152602001610478565b34801561074957600080fd5b5061046c611dc9565b34801561075e57600080fd5b5061044561076d366004614a6c565b611e0c565b34801561077e57600080fd5b5061044561078d366004614c86565b611e19565b34801561079e57600080fd5b506104966107ad366004614a6c565b611e51565b3480156107be57600080fd5b506104c36107cd366004614a6c565b61229c565b3480156107de57600080fd5b5061058360225481565b3480156107f457600080fd5b50610496610803366004614d82565b6122a7565b34801561081457600080fd5b50610445612440565b34801561082957600080fd5b5061049661247a565b34801561083e57600080fd5b5061044561084d366004614a6c565b612508565b34801561085e57600080fd5b5061058361086d366004614aed565b612515565b34801561087e57600080fd5b50610445612563565b34801561089357600080fd5b506104456108a2366004614a6c565b612575565b3480156108b357600080fd5b506104456108c2366004614a6c565b612582565b3480156108d357600080fd5b506107256108e2366004614aed565b6009602052600090815260409020546001600160801b031681565b34801561090957600080fd5b5061091d610918366004614a6c565b61258f565b6040516104789493929190614dca565b34801561093957600080fd5b50610496610948366004614d82565b6126e9565b34801561095957600080fd5b50600b546001600160a01b03166104c3565b34801561097757600080fd5b50610445612902565b34801561098c57600080fd5b5061049661291e565b3480156109a157600080fd5b506104456109b0366004614e57565b61292d565b3480156109c157600080fd5b506104456109d0366004614eb0565b612cc8565b3480156109e157600080fd5b5061058360265481565b3480156109f757600080fd5b5061046c610a06366004614ee7565b612de4565b348015610a1757600080fd5b50610445610a26366004614f20565b612ede565b348015610a3757600080fd5b50610445610a46366004614c86565b61308a565b610445610a59366004614f61565b61309f565b610445610a6c366004614e57565b6131f7565b610445610a7f366004614e57565b613409565b348015610a9057600080fd5b50610496610a9f366004614a6c565b6134f4565b348015610ab057600080fd5b50610496610abf366004614a6c565b6135a2565b348015610ad057600080fd5b5061058360215481565b348015610ae657600080fd5b50610445610af5366004614fdc565b6137b0565b348015610b0657600080fd5b5061058360235481565b348015610b1c57600080fd5b50610b30610b2b366004614acb565b613856565b6040516104789190615001565b348015610b4957600080fd5b506104966138c1565b348015610b5e57600080fd5b5061046c610b6d366004615045565b6001600160a01b039182166000908152600860209081526040808320939094168252919091522054421090565b348015610ba657600080fd5b50610bba610bb5366004614acb565b61391f565b6040516104789190615078565b348015610bd357600080fd5b506105836602c2ad68fd900081565b348015610bee57600080fd5b50610445610bfd366004614aed565b613a9a565b610c0a611dc9565b610c265760405162461bcd60e51b8152600401610425906150ca565b60005482610c6c5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b6044820152606401610425565b602154610c7984836150f9565b1115610cbd5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b6044820152606401610425565b60255460009060ff16610cd257602654610cd6565b6023545b9050600034610cec6602c2ad68fd9000846150f9565b610cf6908761510c565b602554911415915060ff168015610d185750600b546001600160a01b03163314155b15610e95578015610da457610d2c3361111f565b610d735760405162461bcd60e51b815260206004820152601860248201527726b4b9b9b4b7339031b7b63632b1ba37b913b9903332b29760411b6044820152606401610425565b3460235486610d82919061510c565b14610d9f5760405162461bcd60e51b815260040161042590615123565b610de1565b346602c2ad68fd9000602354610dba91906150f9565b610dc4908761510c565b14610de15760405162461bcd60e51b815260040161042590615123565b60225433600090815260056020526040908190205487911c6001600160401b0316610e0c91906150f9565b1115610e5a5760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f7765640000000000006044820152606401610425565b333214610e955760405162461bcd60e51b8152602060048201526009602482015268454f4173206f6e6c7960b81b6044820152606401610425565b6000610ea26014876149c2565b90506000610eb160148861515a565b905060005b82811015610edb57610ec9876014613b13565b80610ed38161516e565b915050610eb6565b508015610eec57610eec8682613b13565b82158015610ef8575060015b15610f0657610f0687613c11565b50505050505050565b60006301ffc9a760e01b6001600160e01b031983161480610f4057506380ac58cd60e01b6001600160e01b03198316145b80610f5b5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610f7090615187565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9c90615187565b8015610fe95780601f10610fbe57610100808354040283529160200191610fe9565b820191906000526020600020905b815481529060010190602001808311610fcc57829003601f168201915b5050505050905090565b6000610ffe82613ce9565b61101b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006110428261229c565b9050336001600160a01b0382161461107b5761105e8133610b6d565b61107b576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600c60205260409020805460609161111891849081106110fe576110fe6151c1565b6000918252602090912001546001600160a01b0316613d10565b9392505050565b601a546040516370a0823160e01b81526001600160a01b03838116600483015260009261010090041690829082906370a0823190602401602060405180830381865afa158015611173573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119791906151d7565b1515949350505050565b6111a9613d5a565b60205460ff16156111cc5760405162461bcd60e51b8152600401610425906151f0565b8060296111d98282615376565b505050565b6111e6613d5a565b60205460ff16156112095760405162461bcd60e51b8152600401610425906151f0565b60408051606081019091528061121f838061521c565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050908252506020908101906112689084018461521c565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050908252506020016112b260808401606085016154d0565b151590526000848152600d602090815260408083208684529091529020815181906112dd90826154ed565b50602082015160018201906112f290826154ed565b50604091820151600291909101805460ff19169115159190911790556000848152600c60209081528282208054845181840281018401909552808552929392909183018282801561136c57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161134e575b5050505050905081608001602081019061138691906154d0565b156113e057808260a00135815181106113a1576113a16151c1565b60200260200101518184815181106113bb576113bb6151c1565b60200260200101906001600160a01b031690816001600160a01b03168152505061145d565b61142a6113f0604084018461521c565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250613db492505050565b81848151811061143c5761143c6151c1565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6000848152600c60209081526040909120825161147c928401906148e1565b5050505050565b826daaeb6d7670e522a718067333cd4e3b156115ce57336001600160a01b038216036114b9576114b4848484613df6565b6115d9565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611508573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152c91906155a6565b80156115af5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561158b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115af91906155a6565b6115ce57604051633b79c77360e21b8152336004820152602401610425565b6115d9848484613df6565b50505050565b6115e7613d5a565b601c54156116375760405162461bcd60e51b815260206004820152601a60248201527f52616e646f6d207365656420697320616c7265616479207365740000000000006044820152606401610425565b3a4342446116466001846155c3565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6001600160601b03191660c082015260d40160408051601f198184030181529190528051602090910120601c556021547f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c906000906116d1906001906155c3565b6040805192835260208301919091520160405180910390a1565b6116f881620151806155d6565b33600090815260096020526040902080546fffffffffffffffffffffffffffffffff19166001600160801b039290921691909117905550565b60298054819061174090615187565b80601f016020809104026020016040519081016040528092919081815260200182805461176c90615187565b80156117b95780601f1061178e576101008083540402835291602001916117b9565b820191906000526020600020905b81548152906001019060200180831161179c57829003601f168201915b5050505050908060010180546117ce90615187565b80601f01602080910402602001604051908101604052809291908181526020018280546117fa90615187565b80156118475780601f1061181c57610100808354040283529160200191611847565b820191906000526020600020905b81548152906001019060200180831161182a57829003601f168201915b50505050509080600201805461185c90615187565b80601f016020809104026020016040519081016040528092919081815260200182805461188890615187565b80156118d55780601f106118aa576101008083540402835291602001916118d5565b820191906000526020600020905b8154815290600101906020018083116118b857829003601f168201915b5050505050908060030180546118ea90615187565b80601f016020809104026020016040519081016040528092919081815260200182805461191690615187565b80156119635780601f1061193857610100808354040283529160200191611963565b820191906000526020600020905b81548152906001019060200180831161194657829003601f168201915b50505050509080600401805461197890615187565b80601f01602080910402602001604051908101604052809291908181526020018280546119a490615187565b80156119f15780601f106119c6576101008083540402835291602001916119f1565b820191906000526020600020905b8154815290600101906020018083116119d457829003601f168201915b505050505090806005015490806006018054611a0c90615187565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3890615187565b8015611a855780601f10611a5a57610100808354040283529160200191611a85565b820191906000526020600020905b815481529060010190602001808311611a6857829003601f168201915b5050505050905087565b611a97613d5a565b611a9f613f8f565b478060008080611ab7600b546001600160a01b031690565b60305490915015611bb05760005b603054811015611bae5760308181548110611ae257611ae26151c1565b90600052602060002090600402016003015483611aff91906150f9565b9250600060308281548110611b1657611b166151c1565b906000526020600020906004020160020160009054906101000a90046001600160a01b0316905061271060308381548110611b5357611b536151c1565b906000526020600020906004020160030154612710611b7291906155c3565b611b7c908861510c565b611b8691906149c2565b9450611b9b81611b9687896155c3565b613fe8565b5080611ba68161516e565b915050611ac5565b505b479450611bbd8186613fe8565b5050505050611bcc6001600a55565b565b611bd6613d5a565b6025805460ff19811660ff90911615179055565b826daaeb6d7670e522a718067333cd4e3b15611d3057336001600160a01b03821603611c1b576114b4848484614101565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611c6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8e91906155a6565b8015611d115750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611ced573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1191906155a6565b611d3057604051633b79c77360e21b8152336004820152602401610425565b6115d9848484614101565b611d43613d5a565b601a805460ff19811660ff90911615179055565b611d5f613d5a565b602755565b611d6c613d5a565b6024611d798284836152bd565b507f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c60006001602154611dac91906155c3565b604080519283526020830191909152015b60405180910390a15050565b6000602154611dd760005490565b108015611e07575060255460ff1680611df2575060285460ff165b80611e075750600b546001600160a01b031633145b905090565b611e14613d5a565b602355565b611e21613d5a565b60205460ff1615611e445760405162461bcd60e51b8152600401610425906151f0565b601b6111d98284836152bd565b6060601c54600003611ea55760405162461bcd60e51b815260206004820152601b60248201527f436f6c6c656374696f6e20686173206e6f742072657665616c656400000000006044820152606401610425565b611eae82613ce9565b611eea5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610425565b6000611f18611efb6008600461510c565b604080518281016060018252910181526000602090910190815290565b90506000611f258461411c565b604080516008808252610120820190925291925060009190602082016101008036833750506040805160088082526101208201909252929350600092915060208201610100803683370190505090506000602154601c54611f86919061515a565b905060005b6008811015612168576000848281518110611fa857611fa86151c1565b60200260200101519050838281518110611fc457611fc46151c1565b60200260200101511515600015150361205457600060215460108481548110611fef57611fef6151c1565b906000526020600020015485858a61200791906150f9565b61201191906150f9565b61201b919061510c565b612025919061515a565b905061203181846141d6565b915081868481518110612046576120466151c1565b602002602001018181525050505b6000828152600f6020908152604080832084845290915290205415612155576000828152600f6020908152604080832084845290915290208054600190811061209f5761209f6151c1565b6000918252602080832090910154848352600f825260408084208585529092529082208054919288926120d4576120d46151c1565b9060005260206000200154815181106120ef576120ef6151c1565b6020908102919091018101919091526000838152600f825260408082208483529092529081208054600192879291612129576121296151c1565b906000526020600020015481518110612144576121446151c1565b911515602092830291909101909101525b50806121608161516e565b915050611f8b565b5060005b835181101561229057600a848281518110612189576121896151c1565b602002602001015110156121c057604080518082019091526002815261030360f41b60208201526121bb908790614272565b612205565b60648482815181106121d4576121d46151c1565b60200260200101511015612205576040805180820190915260018152600360fc1b6020820152612205908790614272565b6103e784828151811061221a5761221a6151c1565b602002602001015111156122525760408051808201909152600381526239393960e81b602082015261224d908790614272565b61227e565b61227e61227785838151811061226a5761226a6151c1565b60200260200101516142f7565b8790614272565b806122888161516e565b91505061216c565b50939695505050505050565b6000610f5b8261433b565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b918301919091526060916122e9908290614272565b6000805b600881101561243757600061232a6123258761230a85600361510c565b61231586600361510c565b6123209060036150f9565b6143a2565b61446e565b6000838152600d6020908152604080832060ff9485168085529252822060020154909350909116151590036123ef578215612382576040805180820190915260018152600b60fa1b6020820152612382908590614272565b6123e060198381548110612398576123986151c1565b60009182526020808320868452600d8252604080852087865283529384902093516123c99493909101929101615674565b60408051601f198184030181529190528590614272565b8215156000036123ef57600192505b6123fb600160086155c3565b8203612424576040805180820190915260018152605d60f81b6020820152612424908590614272565b508061242f8161516e565b9150506122ed565b50909392505050565b60205460ff16156124635760405162461bcd60e51b8152600401610425906151f0565b61246b613d5a565b6020805460ff19166001179055565b6024805461248790615187565b80601f01602080910402602001604051908101604052809291908181526020018280546124b390615187565b80156125005780601f106124d557610100808354040283529160200191612500565b820191906000526020600020905b8154815290600101906020018083116124e357829003601f168201915b505050505081565b612510613d5a565b602655565b60006001600160a01b03821661253e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61256b613d5a565b611bcc600061452c565b61257d613d5a565b602255565b61258a613d5a565b601d55565b6030818154811061259f57600080fd5b90600052602060002090600402016000915090508060000180546125c290615187565b80601f01602080910402602001604051908101604052809291908181526020018280546125ee90615187565b801561263b5780601f106126105761010080835404028352916020019161263b565b820191906000526020600020905b81548152906001019060200180831161261e57829003601f168201915b50505050509080600101805461265090615187565b80601f016020809104026020016040519081016040528092919081815260200182805461267c90615187565b80156126c95780601f1061269e576101008083540402835291602001916126c9565b820191906000526020600020905b8154815290600101906020018083116126ac57829003601f168201915b50505050600283015460039093015491926001600160a01b031691905084565b60408051620200608101909152620200408152600060209091018181526060919061272d6040518060c0016040528060818152602001615e5f608191398290614272565b612759601b60405160200161274291906156ca565b60408051601f198184030181529190528290614272565b60005b612768600160086155c3565b8110156128245761278c6123258661278184600361510c565b61231585600361510c565b60ff169250612812600d600083815260200190815260200160002060008581526020019081526020016000206001016127ea6127e5600c600086815260200190815260200160002087815481106110fe576110fe6151c1565b61457e565b6040516020016127fb9291906156fc565b60408051601f198184030181529190528390614272565b8061281c8161516e565b91505061275c565b5061284f61232585600361283960088261510c565b61284391906155c3565b6123206008600361510c565b60ff1691506128d1600d6000612867600160086155c3565b815260200190815260200160002060008481526020019081526020016000206001016128c06127e5600c6000600160086128a191906155c3565b815260200190815260200160002086815481106110fe576110fe6151c1565b604051602001612742929190615756565b6128da8161457e565b6040516020016128ea91906158ba565b60405160208183030381529060405292505050919050565b61290a613d5a565b6028805460ff19811660ff90911615179055565b606060038054610f7090615187565b612935613d5a565b60205460ff16156129585760405162461bcd60e51b8152600401610425906151f0565b806011846008811061296c5761296c6151c1565b0154146129bb5760405162461bcd60e51b815260206004820152601a60248201527f547261697473206c656e67746820697320696e636f72726563740000000000006044820152606401610425565b6000816001600160401b038111156129d5576129d5614cf7565b6040519080825280602002602001820160405280156129fe578160200160208202803683370190505b50905060005b82811015612ca857838382818110612a1e57612a1e6151c1565b9050602002810190612a3091906158ff565b612a419060a08101906080016154d0565b15612abe5781848483818110612a5957612a596151c1565b9050602002810190612a6b91906158ff565b60a0013581518110612a7f57612a7f6151c1565b6020026020010151828281518110612a9957612a996151c1565b60200260200101906001600160a01b031690816001600160a01b031681525050612b26565b612af3848483818110612ad357612ad36151c1565b9050602002810190612ae591906158ff565b6113f090604081019061521c565b828281518110612b0557612b056151c1565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6040518060600160405280858584818110612b4357612b436151c1565b9050602002810190612b5591906158ff565b612b5f908061521c565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505090825250602001858584818110612bab57612bab6151c1565b9050602002810190612bbd91906158ff565b612bcb90602081019061521c565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505090825250602001858584818110612c1757612c176151c1565b9050602002810190612c2991906158ff565b612c3a9060808101906060016154d0565b151590526000868152600d60209081526040808320858452909152902081518190612c6590826154ed565b5060208201516001820190612c7a90826154ed565b50604091909101516002909101805460ff191691151591909117905580612ca08161516e565b915050612a04565b506000848152600c60209081526040909120825161147c928401906148e1565b6001600160a01b0382163303612d205760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610425565b336000908152600960205260408120546001600160801b0316612d465762278d00612d60565b336000908152600960205260409020546001600160801b03165b905081612d6e576000612d81565b612d816001600160801b038216426150f9565b3360008181526008602090815260408083206001600160a01b03891680855290835292819020949094559251851515815290927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000612e5883838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601d546040516001600160601b031960608b901b16602082015290925060340190505b6040516020818303038152906040528051906020012061458c565b80612ed65750612ed6838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516001600160601b031960608a901b1660208201527fc9e317826dbbd1cfb5121cd14f5a918d94e68798130ece0ccd1550653a4e74fd92506034019050612e3d565b949350505050565b612ee6613d5a565b60205460ff1615612f095760405162461bcd60e51b8152600401610425906151f0565b60005b818110156111d9576040518060400160405280848484818110612f3157612f316151c1565b9050602002810190612f43919061591f565b612f51906020810190615935565b6000818110612f6257612f626151c1565b905060200201358152602001848484818110612f8057612f806151c1565b9050602002810190612f92919061591f565b612fa0906020810190615935565b6001818110612fb157612fb16151c1565b90506020020135815250600f6000858585818110612fd157612fd16151c1565b9050602002810190612fe3919061591f565b612fed9080615935565b6000818110612ffe57612ffe6151c1565b9050602002013581526020019081526020016000206000858585818110613027576130276151c1565b9050602002810190613039919061591f565b6130439080615935565b6001818110613054576130546151c1565b905060200201358152602001908152602001600020906002613077929190614946565b50806130828161516e565b915050612f0c565b613092613d5a565b601f6111d98284836152bd565b836daaeb6d7670e522a718067333cd4e3b156131eb57336001600160a01b038216036130d6576130d1858585856145a2565b61147c565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015613125573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061314991906155a6565b80156131cc5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156131a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131cc91906155a6565b6131eb57604051633b79c77360e21b8152336004820152602401610425565b61147c858585856145a2565b6131ff613f8f565b613207611dc9565b6132235760405162461bcd60e51b8152600401610425906150ca565b60255460ff161580156132415750600b546001600160a01b03163314155b156133f5576000346602c2ad68fd900060265461325e91906150f9565b613268908661510c565b14801591506132f25761327a3361111f565b6132c15760405162461bcd60e51b815260206004820152601860248201527726b4b9b9b4b7339031b7b63632b1ba37b913b9903332b29760411b6044820152606401610425565b34602654856132d0919061510c565b146132ed5760405162461bcd60e51b815260040161042590615123565b61332f565b346602c2ad68fd900060265461330891906150f9565b613312908661510c565b1461332f5760405162461bcd60e51b815260040161042590615123565b61333a338484612de4565b61337a5760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b6044820152606401610425565b60275433600090815260056020526040908190205486911c6001600160401b03166133a591906150f9565b11156133f35760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f7765640000000000006044820152606401610425565b505b6133ff8333610c02565b6111d96001600a55565b613411613f8f565b613419611dc9565b6134355760405162461bcd60e51b8152600401610425906150ca565b60255460ff16806134505750600b546001600160a01b031633145b61349c5760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f7420616374697665000000006044820152606401610425565b60005b818110156134e9576134d7848484848181106134bd576134bd6151c1565b90506020020160208101906134d29190614aed565b610c02565b806134e18161516e565b91505061349f565b506111d96001600a55565b6060601c546000146135115761350c61094883611e51565b610f5b565b601f805461351e90615187565b80601f016020809104026020016040519081016040528092919081815260200182805461354a90615187565b80156135975780601f1061356c57610100808354040283529160200191613597565b820191906000526020600020905b81548152906001019060200180831161357a57829003601f168201915b505050505092915050565b60606135ad82613ce9565b6135e95760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610425565b60408051620200608101909152620200408152600060209091019081526136286029613614856142f7565b604051612742929190602a9060200161597e565b601c5460000361364c57613647601f60405160200161274291906159f8565b613780565b600061365784611e51565b905060006024805461366890615187565b905011801561368557506000848152600e602052604090205460ff165b156136b3576136ae6024613698866142f7565b83601e6040516020016127fb9493929190615a28565b613762565b604080516020810190915260008152601a5460ff16156137295760006136d8836126e9565b9050613702816040516020016136ee9190615ab3565b60405160208183030381529060405261457e565b60405160200161371291906158ba565b604051602081830303815290604052915050613735565b613732826126e9565b90505b613760816040516020016137499190615b9e565b60408051601f198184030181529190528490614272565b505b61377e61376e826122a7565b6040516020016127fb9190615be1565b505b6137898161457e565b6040516020016137999190615c22565b604051602081830303815290604052915050919050565b6137b98261229c565b6001600160a01b0316336001600160a01b03161461380b5760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b6044820152606401610425565b6000828152600e6020908152604091829020805460ff191684151517905590518381527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79101611dbd565b6000828152600f602090815260408083208484528252918290208054835181840281018401909452808452606093928301828280156138b457602002820191906000526020600020905b8154815260200190600101908083116138a0575b5050505050905092915050565b602e546060906138fb90602990602a90602b90602c90602d906138e3906142f7565b6040516136ee96959493929190602f90602001615c67565b60405160200161390b9190615c22565b604051602081830303815290604052905090565b604080516060808201835280825260208201526000918101919091526000838152600d602090815260408083208584529091529081902081516060810190925280548290829061396e90615187565b80601f016020809104026020016040519081016040528092919081815260200182805461399a90615187565b80156139e75780601f106139bc576101008083540402835291602001916139e7565b820191906000526020600020905b8154815290600101906020018083116139ca57829003601f168201915b50505050508152602001600182018054613a0090615187565b80601f0160208091040260200160405190810160405280929190818152602001828054613a2c90615187565b8015613a795780601f10613a4e57610100808354040283529160200191613a79565b820191906000526020600020905b815481529060010190602001808311613a5c57829003601f168201915b50505091835250506002919091015460ff1615156020909101529392505050565b613aa2613d5a565b6001600160a01b038116613b075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610425565b613b108161452c565b50565b6000805490829003613b385760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114613be757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101613baf565b5081600003613c0857604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000613c24826602c2ad68fd900061510c565b905060007f00000000000000000000000029fbb84b835f892eba2d331af9278b74c595edf16001600160a01b03168260405160006040518083038185875af1925050503d8060008114613c93576040519150601f19603f3d011682016040523d82523d6000602084013e613c98565b606091505b50509050806111d95760405162461bcd60e51b815260206004820152601c60248201527f4661696c656420746f2073656e6420636f6c6c6563746f7220666565000000006044820152606401610425565b6000805482108015610f5b575050600090815260046020526040902054600160e01b161590565b6060813b80613d27576311052bb46000526004601cfd5b600181039050604051915061ffe0603f820116820160405280825260008160208401015280600160208401853c50919050565b600b546001600160a01b03163314611bcc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610425565b60008151600181018060401b6a61000080600a3d393df300178452600a8101601585016000f092505081613df05763301164256000526004601cfd5b90915290565b6000613e018261433b565b9050836001600160a01b0316816001600160a01b031614613e345760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417613e8157613e648633610b6d565b613e8157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516613ea857604051633a954ecd60e21b815260040160405180910390fd5b8015613eb357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003613f4557600184016000818152600460205260408120549003613f43576000548114613f435760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6002600a5403613fe15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610425565b6002600a55565b804710156140385760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610425565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614085576040519150601f19603f3d011682016040523d82523d6000602084013e61408a565b606091505b50509050806111d95760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610425565b6111d98383836040518060200160405280600081525061309f565b6000806021546001600160401b0381111561413957614139614cf7565b604051908082528060200260200182016040528015614162578160200160208202803683370190505b50905060005b6021548110156141985780828281518110614185576141856151c1565b6020908102919091010152600101614168565b506040805160208101909152601c5481526141b381836145e6565b8184815181106141c5576141c56151c1565b602002602001015192505050919050565b600080805b601184600881106141ee576141ee6151c1565b01548110156104475760006011856008811061420c5761420c6151c1565b01828154811061421e5761421e6151c1565b90600052602060002001549050828610158015614243575061424081846150f9565b86105b1561425257509150610f5b9050565b61425c81846150f9565b925050808061426a9061516e565b9150506141db565b601f1982015182518251603f1990920191829061428f90836150f9565b11156142ed5760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b6064820152608401610425565b6115d98484614661565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806143115750819003601f19909101908152919050565b6000816000548110156143895760008181526004602052604081205490600160e01b82169003614387575b80600003611118575060001901600081815260046020526040902054614366565b505b604051636f96cda160e11b815260040160405180910390fd5b60608360006143b185856155c3565b6001600160401b038111156143c8576143c8614cf7565b6040519080825280601f01601f1916602001820160405280156143f2576020820181803683370190505b509050845b8481101561446457828181518110614411576144116151c1565b01602001516001600160f81b0319168261442b88846155c3565b8151811061443b5761443b6151c1565b60200101906001600160f81b031916908160001a9053508061445c8161516e565b9150506143f7565b5095945050505050565b60008181805b82518160ff161015614524576030838260ff1681518110614497576144976151c1565b016020015160f81c108015906144ca57506039838260ff16815181106144bf576144bf6151c1565b016020015160f81c11155b15614512576144da600a83615d90565b91506030838260ff16815181106144f3576144f36151c1565b0160200151614505919060f81c615db3565b61450f9083615dcc565b91505b8061451c81615de5565b915050614474565b509392505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060610f5b82600080614697565b6000826145998584614782565b14949350505050565b6145ad848484611483565b6001600160a01b0383163b156115d9576145c9848484846147c7565b6115d9576040516368d2bf6b60e11b815260040160405180910390fd5b80516000196001600160801b03821561147c576020840193505b6020852080865282840193608082901c0660051b85018461462257505061147c565b600585811b8701805183519091529091528385019482841606901b85018461464b57505061147c565b600585901b860180518251909152905250614600565b8051602082019150808201602084510184015b8184101561468c578351815260209384019301614674565b505082510190915250565b606083518015614524576003600282010460021b60405192507f4142434445464748494a4b4c4d4e4f505152535455565758595a616263646566601f526102308515027f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392d5f03603f52602083018181015b6003880197508751603f8160121c1651600053603f81600c1c1651600153603f8160061c1651600253603f81165160035350600051825260048201915080821061470757601f01601f1916604052613d3d60f01b60038406600204808303919091526000861515909102918290035290038252509392505050565b600081815b8451811015614524576147b3828683815181106147a6576147a66151c1565b60200260200101516148b2565b9150806147bf8161516e565b915050614787565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906147fc903390899088908890600401615e04565b6020604051808303816000875af1925050508015614837575060408051601f3d908101601f1916820190925261483491810190615e41565b60015b614895573d808015614865576040519150601f19603f3d011682016040523d82523d6000602084013e61486a565b606091505b50805160000361488d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008183106148ce576000828152602084905260409020611118565b6000838152602083905260409020611118565b828054828255906000526020600020908101928215614936579160200282015b8281111561493657825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190614901565b50614942929150614981565b5090565b828054828255906000526020600020908101928215614936579160200282015b82811115614936578251825591602001919060010190614966565b5b808211156149425760008155600101614982565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826149d1576149d1614996565b500490565b6001600160e01b031981168114613b1057600080fd5b6000602082840312156149fe57600080fd5b8135611118816149d6565b60005b83811015614a24578181015183820152602001614a0c565b50506000910152565b60008151808452614a45816020860160208601614a09565b601f01601f19169290920160200192915050565b6020815260006111186020830184614a2d565b600060208284031215614a7e57600080fd5b5035919050565b80356001600160a01b0381168114614a9c57600080fd5b919050565b60008060408385031215614ab457600080fd5b614abd83614a85565b946020939093013593505050565b60008060408385031215614ade57600080fd5b50508035926020909101359150565b600060208284031215614aff57600080fd5b61111882614a85565b600060208284031215614b1a57600080fd5b81356001600160401b03811115614b3057600080fd5b820160e0818503121561111857600080fd5b600080600060608486031215614b5757600080fd5b833592506020840135915060408401356001600160401b03811115614b7b57600080fd5b840160c08187031215614b8d57600080fd5b809150509250925092565b600080600060608486031215614bad57600080fd5b614bb684614a85565b9250614bc460208501614a85565b9150604084013590509250925092565b600060208284031215614be657600080fd5b81356001600160801b038116811461111857600080fd5b60e081526000614c1060e083018a614a2d565b8281036020840152614c22818a614a2d565b90508281036040840152614c368189614a2d565b90508281036060840152614c4a8188614a2d565b90508281036080840152614c5e8187614a2d565b90508460a084015282810360c0840152614c788185614a2d565b9a9950505050505050505050565b60008060208385031215614c9957600080fd5b82356001600160401b0380821115614cb057600080fd5b818501915085601f830112614cc457600080fd5b813581811115614cd357600080fd5b866020828501011115614ce557600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115614d2757614d27614cf7565b604051601f8501601f19908116603f01168101908282118183101715614d4f57614d4f614cf7565b81604052809350858152868686011115614d6857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215614d9457600080fd5b81356001600160401b03811115614daa57600080fd5b8201601f81018413614dbb57600080fd5b612ed684823560208401614d0d565b608081526000614ddd6080830187614a2d565b8281036020840152614def8187614a2d565b6001600160a01b0395909516604084015250506060015292915050565b60008083601f840112614e1e57600080fd5b5081356001600160401b03811115614e3557600080fd5b6020830191508360208260051b8501011115614e5057600080fd5b9250929050565b600080600060408486031215614e6c57600080fd5b8335925060208401356001600160401b03811115614e8957600080fd5b614e9586828701614e0c565b9497909650939450505050565b8015158114613b1057600080fd5b60008060408385031215614ec357600080fd5b614ecc83614a85565b91506020830135614edc81614ea2565b809150509250929050565b600080600060408486031215614efc57600080fd5b614f0584614a85565b925060208401356001600160401b03811115614e8957600080fd5b60008060208385031215614f3357600080fd5b82356001600160401b03811115614f4957600080fd5b614f5585828601614e0c565b90969095509350505050565b60008060008060808587031215614f7757600080fd5b614f8085614a85565b9350614f8e60208601614a85565b92506040850135915060608501356001600160401b03811115614fb057600080fd5b8501601f81018713614fc157600080fd5b614fd087823560208401614d0d565b91505092959194509250565b60008060408385031215614fef57600080fd5b823591506020830135614edc81614ea2565b6020808252825182820181905260009190848201906040850190845b818110156150395783518352928401929184019160010161501d565b50909695505050505050565b6000806040838503121561505857600080fd5b61506183614a85565b915061506f60208401614a85565b90509250929050565b6020815260008251606060208401526150946080840182614a2d565b90506020840151601f198483030160408501526150b18282614a2d565b9150506040840151151560608401528091505092915050565b6020808252601590820152744d696e74696e67206973206e6f742061637469766560581b604082015260600190565b80820180821115610f5b57610f5b6149ac565b8082028115828204841417610f5b57610f5b6149ac565b6020808252601e908201527f496e636f727265637420616d6f756e74206f662065746865722073656e740000604082015260600190565b60008261516957615169614996565b500690565b600060018201615180576151806149ac565b5060010190565b600181811c9082168061519b57607f821691505b6020821081036151bb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156151e957600080fd5b5051919050565b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b6000808335601e1984360301811261523357600080fd5b8301803591506001600160401b0382111561524d57600080fd5b602001915036819003821315614e5057600080fd5b601f8211156111d957600081815260208120601f850160051c810160208610156152895750805b601f850160051c820191505b81811015613f8757828155600101615295565b600019600383901b1c191660019190911b1790565b6001600160401b038311156152d4576152d4614cf7565b6152e8836152e28354615187565b83615262565b6000601f84116001811461531657600085156153045750838201355b61530e86826152a8565b84555061147c565b600083815260209020601f19861690835b828110156153475786850135825560209485019460019092019101615327565b50868210156153645760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b615380828361521c565b6001600160401b0381111561539757615397614cf7565b6153ab816153a58554615187565b85615262565b6000601f8211600181146153d957600083156153c75750838201355b6153d184826152a8565b865550615433565b600085815260209020601f19841690835b8281101561540a57868501358255602094850194600190920191016153ea565b50848210156154275760001960f88660031b161c19848701351681555b505060018360011b0185555b50505050615444602083018361521c565b6154528183600186016152bd565b5050615461604083018361521c565b61546f8183600286016152bd565b505061547e606083018361521c565b61548c8183600386016152bd565b505061549b608083018361521c565b6154a98183600486016152bd565b505060a082013560058201556154c260c083018361521c565b6115d98183600686016152bd565b6000602082840312156154e257600080fd5b813561111881614ea2565b81516001600160401b0381111561550657615506614cf7565b61551a816155148454615187565b84615262565b602080601f83116001811461554957600084156155375750858301515b61554185826152a8565b865550613f87565b600085815260208120601f198616915b8281101561557857888601518255948401946001909101908401615559565b50858210156155965787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156155b857600080fd5b815161111881614ea2565b81810381811115610f5b57610f5b6149ac565b6001600160801b038181168382160280821691908281146155f9576155f96149ac565b505092915050565b6000815461560e81615187565b60018281168015615626576001811461563b5761566a565b60ff198416875282151583028701945061566a565b8560005260208060002060005b858110156156615781548a820152908401908201615648565b50505082870194505b5050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b81526000615698600f830185615601565b6a1116113b30b63ab2911d1160a91b81526156b6600b820185615601565b61227d60f01b815260020195945050505050565b60006156d68284615601565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b815260006157166005830185615601565b670ed8985cd94d8d0b60c21b81528351615737816008840160208801614a09565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b815260006157706005830185615601565b670ed8985cd94d8d0b60c21b81528351615791816008840160208801614a09565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000008152600082516158f281601a850160208701614a09565b91909101601a0192915050565b6000823560be1983360301811261591557600080fd5b9190910192915050565b60008235603e1983360301811261591557600080fd5b6000808335601e1984360301811261594c57600080fd5b8301803591506001600160401b0382111561596657600080fd5b6020019150600581901b3603821315614e5057600080fd5b683d913730b6b2911d1160b91b8152600061599c6009830186615601565b61202360f01b815284516159b7816002840160208901614a09565b701116113232b9b1b934b83a34b7b7111d1160791b600292909101918201526159e36013820185615601565b61088b60f21b81526002019695505050505050565b681134b6b0b3b2911d1160b91b81526000615a166009830184615601565b61227d60f01b81526002019392505050565b681134b6b0b3b2911d1160b91b81526000615a466009830187615601565b8551615a56818360208a01614a09565b643f646e613d60d81b91019081528451615a77816005840160208901614a09565b6a266e6574776f726b49643d60a81b60059290910191820152615a9d6010820185615601565b61088b60f21b8152600201979650505050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b608082015260008251615b77816091850160208701614a09565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b6d1134b6b0b3b2afb230ba30911d1160911b81528151600090615bc881600e850160208701614a09565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b81528151600090615c0a81600d850160208701614a09565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251615c5a81601d850160208701614a09565b91909101601d0192915050565b683d913730b6b2911d1160b91b81526000615c85600983018a615601565b701116113232b9b1b934b83a34b7b7111d1160791b8152615ca9601182018a615601565b6a11161134b6b0b3b2911d1160a91b81529050615cc9600b820189615601565b6b1116113130b73732b9111d1160a11b81529050615cea600c820188615601565b7211161132bc3a32b93730b62fb634b735911d1160691b81529050615d126013820187615601565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a0000000081528451615d4a81601c840160208901614a09565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c9290910191820152615d77602e820185615601565b61227d60f01b81526002019a9950505050505050505050565b60ff8181168382160290811690818114615dac57615dac6149ac565b5092915050565b60ff8281168282160390811115610f5b57610f5b6149ac565b60ff8181168382160190811115610f5b57610f5b6149ac565b600060ff821660ff8103615dfb57615dfb6149ac565b60010192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615e3790830184614a2d565b9695505050505050565b600060208284031215615e5357600080fd5b8151611118816149d656fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723aa2646970667358221220a5888869b875a733ae22605caf6b500248853d1bce554c810e85aad53463349164736f6c63430008110033

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.