ETH Price: $3,088.65 (+0.91%)
Gas: 3 Gwei

Token

Fast Food Runners (FFR)
 

Overview

Max Total Supply

616 FFR

Holders

120

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
webree.eth
Balance
1 FFR
0x3671dc3f56fcc4f3bee917e9beb8acc3f80656ee
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:
IndelibleERC721A

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 11 : IndelibleERC721A.sol
// SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;

    import "erc721a/contracts/ERC721A.sol";
    import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
    import "@openzeppelin/contracts/access/Ownable.sol";
    import "@openzeppelin/contracts/utils/Base64.sol";
    import "./SSTORE2.sol";
    import "./DynamicBuffer.sol";
    import "./HelperLib.sol";

    contract IndelibleERC721A is ERC721A, ReentrancyGuard, Ownable {
        using HelperLib for uint256;
        using DynamicBuffer for bytes;

        struct TraitDTO {
            string name;
            string mimetype;
            bytes data;
        }
        
        struct Trait {
            string name;
            string mimetype;
        }

        struct ContractData {
            string name;
            string description;
            string image;
            string banner;
            string website;
            uint256 royalties;
            string royaltiesRecipient;
        }

        mapping(uint256 => uint256) internal _tokenIdToRandomBytes;
        mapping(uint256 => address[]) internal _traitDataPointers;
        mapping(uint256 => mapping(uint256 => Trait)) internal _traitDetails;
        mapping(uint256 => bool) internal _renderTokenOffChain;

        uint256 private constant NUM_LAYERS = 8;
        uint256 private constant MAX_BATCH_MINT = 20;
        uint256[][NUM_LAYERS] private TIERS;
        string[] private LAYER_NAMES = [unicode"Head", unicode"Upper Face", unicode"Lower Face", unicode"Eyes", unicode"Nose", unicode"Job", unicode"Skin", unicode"Background"];
        bool private shouldWrapSVG = true;
        uint256 public constant maxTokens = 3333;
        uint256 public maxPerAddress = 100;
        uint256 public maxFreePerAddress = 0;
        uint256 public mintPrice = 0.005 ether;
        string public baseURI = "";
        bool public isMintingPaused = true;
        ContractData public contractData = ContractData(unicode"Fast Food Runners", unicode"Fast food runners coming to a mega city location near you!", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/profile/4816314c-8cc1-4f3e-9023-6eb09028d7fb", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/banner/4816314c-8cc1-4f3e-9023-6eb09028d7fb", "", 690, "0x85929Be00766f8Af44139FC0E06c3d188E3f31bd");

        constructor() ERC721A(unicode"Fast Food Runners", unicode"FFR") {
            TIERS[0] = [30,99,135,264,310,312,317,544,643,679];
TIERS[1] = [21,32,44,57,75,77,112,115,143,151,187,199,212,215,318,328,336,337,374];
TIERS[2] = [55,64,65,67,74,99,128,140,183,190,208,260,323,327,347,394,409];
TIERS[3] = [92,123,372,412,450,725,1159];
TIERS[4] = [291,317,750,907,1068];
TIERS[5] = [139,180,491,644,732,1147];
TIERS[6] = [356,416,639,892,1030];
TIERS[7] = [3,7,16,51,72,130,139,143,164,167,168,193,220,269,323,351,445,472];
        }

        modifier whenPublicMintActive() {
            require(isPublicMintActive(), "Public sale not open");
            _;
        }

        function rarityGen(uint256 _randinput, uint256 _rarityTier)
            internal
            view
            returns (uint256)
        {
            uint256 currentLowerBound = 0;
            for (uint256 i = 0; i < TIERS[_rarityTier].length; i++) {
                uint256 thisPercentage = TIERS[_rarityTier][i];
                if (
                    _randinput >= currentLowerBound &&
                    _randinput < currentLowerBound + thisPercentage
                ) return i;
                currentLowerBound = currentLowerBound + thisPercentage;
            }

            revert();
        }

        function hashFromRandomBytes(
            uint256 _randomBytes,
            uint256 _tokenId,
            uint256 _startingTokenId
        ) internal view returns (string memory) {
            require(_exists(_tokenId), "Invalid token");
            // This will generate a NUM_LAYERS * 3 character string.
            bytes memory hashBytes = DynamicBuffer.allocate(NUM_LAYERS * 4);

            for (uint256 i = 0; i < NUM_LAYERS; i++) {
                uint256 _randinput = uint256(
                    uint256(
                        keccak256(
                            abi.encodePacked(
                                _randomBytes,
                                _tokenId,
                                _startingTokenId,
                                _tokenId + i
                            )
                        )
                    ) % maxTokens
                );

                uint256 rarity = rarityGen(_randinput, i);

                if (rarity < 10) {
                    hashBytes.appendSafe("00");
                } else if (rarity < 100) {
                    hashBytes.appendSafe("0");
                }
                if (rarity > 999) {
                    hashBytes.appendSafe("999");
                } else {
                    hashBytes.appendSafe(bytes(_toString(rarity)));
                }
            }

            return string(hashBytes);
        }

        function mint(uint256 _count) external payable nonReentrant whenPublicMintActive returns (uint256) {
            uint256 totalMinted = _totalMinted();
            require(_count > 0, "Invalid token count");
            require(totalMinted + _count <= maxTokens, "All tokens are gone");
            require(_count * mintPrice == msg.value, "Incorrect amount of ether sent");
            require(balanceOf(msg.sender) + _count <= maxPerAddress, "Exceeded max mints allowed.");

            uint256 batchCount = _count / MAX_BATCH_MINT;
            uint256 remainder = _count % MAX_BATCH_MINT;

            uint256 randomBytes = uint256(
                keccak256(
                    abi.encodePacked(
                        tx.gasprice,
                        block.number,
                        block.timestamp,
                        block.difficulty,
                        blockhash(block.number - 1),
                        msg.sender
                    )
                )
            );

            for (uint256 i = 0; i < batchCount; i++) {
                if (i == 0) {
                    _tokenIdToRandomBytes[totalMinted] = randomBytes;
                } else {
                    _tokenIdToRandomBytes[totalMinted + (i * MAX_BATCH_MINT)] = randomBytes;
                }
        
                _mint(msg.sender, MAX_BATCH_MINT);
            }

            if (remainder > 0) {
                if (batchCount == 0) {
                    _tokenIdToRandomBytes[totalMinted] = randomBytes;
                } else {
                    _tokenIdToRandomBytes[totalMinted + (batchCount * MAX_BATCH_MINT)] = randomBytes;
                }

                _mint(msg.sender, remainder);
            }

            return totalMinted;
        }

        function isPublicMintActive() public view returns (bool) {
            return _totalMinted() < maxTokens && isMintingPaused == false;
        }

        function hashToSVG(string memory _hash)
            public
            view
            returns (string memory)
        {
            uint256 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-image:url(');

            for (uint256 i = 0; i < NUM_LAYERS - 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, (NUM_LAYERS * 3) - 3, NUM_LAYERS * 3)
            );

            svgBytes.appendSafe(
                abi.encodePacked(
                    "data:",
                    _traitDetails[NUM_LAYERS - 1][thisTraitIndex].mimetype,
                    ";base64,",
                    Base64.encode(SSTORE2.read(_traitDataPointers[NUM_LAYERS - 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("[");

            for (uint256 i = 0; i < NUM_LAYERS; i++) {
                uint256 thisTraitIndex = HelperLib.parseInt(
                    HelperLib._substring(_hash, (i * 3), (i * 3) + 3)
                );
                metadataBytes.appendSafe(
                    abi.encodePacked(
                        '{"trait_type":"',
                        LAYER_NAMES[i],
                        '","value":"',
                        _traitDetails[i][thisTraitIndex].name,
                        '"}'
                    )
                );
                
                if (i == NUM_LAYERS - 1) {
                    metadataBytes.appendSafe("]");
                } else {
                    metadataBytes.appendSafe(",");
                }
            }

            return string(metadataBytes);
        }

        function tokenURI(uint256 _tokenId)
            public
            view
            override
            returns (string memory)
        {
            require(_exists(_tokenId), "Invalid token");
            require(_traitDataPointers[0].length > 0,  "Traits have not been added");

            string memory tokenHash = tokenIdToHash(_tokenId);

            bytes memory jsonBytes = DynamicBuffer.allocate(1024 * 128);
            jsonBytes.appendSafe(unicode"{\"name\":\"Fast Food Runners #");

            jsonBytes.appendSafe(
                abi.encodePacked(
                    _toString(_tokenId),
                    "\",\"description\":\"",
                    contractData.description,
                    "\","
                )
            );

            if (bytes(baseURI).length > 0 && _renderTokenOffChain[_tokenId]) {
                jsonBytes.appendSafe(
                    abi.encodePacked(
                        '"image":"',
                        baseURI,
                        _toString(_tokenId),
                        "?dna=",
                        tokenHash,
                        '&network=mainnet",'
                    )
                );
            } 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>'
                                )
                            )
                        )
                    );
                    jsonBytes.appendSafe(
                        abi.encodePacked(
                            '"svg_image_data":"',
                            svgString,
                            '",'
                        )
                    );
                } 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 tokenIdToHash(uint256 _tokenId)
            public
            view
            returns (string memory)
        {
            // decrement to find first token in batch
            for (uint256 i = 0; i < MAX_BATCH_MINT; i++) {
                if (_tokenIdToRandomBytes[_tokenId - i] > 0) {
                    return hashFromRandomBytes(_tokenIdToRandomBytes[_tokenId - i], _tokenId, _tokenId - i);
                }
            }
            revert();
        }

        function tokenIdToSVG(uint256 _tokenId)
            public
            view
            returns (string memory)
        {
            return hashToSVG(tokenIdToHash(_tokenId));
        }

        function traitDetails(uint256 _layerIndex, uint256 _traitIndex)
            public
            view
            returns (Trait memory)
        {
            return _traitDetails[_layerIndex][_traitIndex];
        }

        function traitData(uint256 _layerIndex, uint256 _traitIndex)
            public
            view
            returns (string memory)
        {
            return string(SSTORE2.read(_traitDataPointers[_layerIndex][_traitIndex]));
        }

        function addLayer(uint256 _layerIndex, TraitDTO[] memory traits)
            public
            onlyOwner
        {
            require(TIERS[_layerIndex].length == traits.length, "Traits size does not match tiers for this index");
            require(traits.length < 100, "There cannot be over 99 traits per layer");
            address[] memory dataPointers = new address[](traits.length);
            for (uint256 i = 0; i < traits.length; i++) {
                dataPointers[i] = SSTORE2.write(traits[i].data);
                _traitDetails[_layerIndex][i] = Trait(traits[i].name, traits[i].mimetype);
            }
            _traitDataPointers[_layerIndex] = dataPointers;
            return;
        }

        function addTrait(uint256 _layerIndex, uint256 _traitIndex, TraitDTO memory trait)
            public
            onlyOwner
        {
            require(_traitIndex < 99, "There cannot be over 99 traits per layer");
            _traitDetails[_layerIndex][_traitIndex] = Trait(trait.name, trait.mimetype);
            address[] memory dataPointers = _traitDataPointers[_layerIndex];
            dataPointers[_traitIndex] = SSTORE2.write(trait.data);
            _traitDataPointers[_layerIndex] = dataPointers;
            return;
        }

        function changeContractData(ContractData memory _contractData) external onlyOwner {
            contractData = _contractData;
        }

        function changeMaxPerAddress(uint256 _maxPerAddress) external onlyOwner {
            maxPerAddress = _maxPerAddress;
        }

        function changeBaseURI(string memory _baseURI) external onlyOwner {
            baseURI = _baseURI;
        }

        function changeRenderOfTokenId(uint256 _tokenId, bool _renderOffChain) external {
            require(msg.sender == ownerOf(_tokenId), "Only the token owner can change the render method");
            _renderTokenOffChain[_tokenId] = _renderOffChain;
        }

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

        function toggleMinting() external onlyOwner {
            isMintingPaused = !isMintingPaused;
        }

        function withdraw() external onlyOwner nonReentrant {
            (bool success,) = msg.sender.call{value : address(this).balance}("");
            require(success, "Withdrawal failed");
        }
    }

File 2 of 11 : 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 3 of 11 : HelperLib.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;

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 4 of 11 : SSTORE2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./utils/Bytecode.sol";

/**
  @title A key-value storage with auto-generated keys for storing chunks of data with a lower write & read cost.
  @author Agustin Aguilar <[email protected]>

  Readme: https://github.com/0xsequence/sstore2#readme
*/
library SSTORE2 {
  error WriteError();

  /**
    @notice Stores `_data` and returns `pointer` as key for later retrieval
    @dev The pointer is a contract address with `_data` as code
    @param _data to be written
    @return pointer Pointer to the written `_data`
  */
  function write(bytes memory _data) internal returns (address pointer) {
    // Append 00 to _data so contract can't be called
    // Build init code
    bytes memory code = Bytecode.creationCodeFor(
      abi.encodePacked(
        hex'00',
        _data
      )
    );

    // Deploy contract using create
    assembly { pointer := create(0, add(code, 32), mload(code)) }

    // Address MUST be non-zero
    if (pointer == address(0)) revert WriteError();
  }

  /**
    @notice Reads the contents of the `_pointer` code as data, skips the first byte 
    @dev The function is intended for reading pointers generated by `write`
    @param _pointer to be read
    @return data read from `_pointer` contract
  */
  function read(address _pointer) internal view returns (bytes memory) {
    return Bytecode.codeAt(_pointer, 1, type(uint256).max);
  }

  /**
    @notice Reads the contents of the `_pointer` code as data, skips the first byte 
    @dev The function is intended for reading pointers generated by `write`
    @param _pointer to be read
    @param _start number of bytes to skip
    @return data read from `_pointer` contract
  */
  function read(address _pointer, uint256 _start) internal view returns (bytes memory) {
    return Bytecode.codeAt(_pointer, _start + 1, type(uint256).max);
  }

  /**
    @notice Reads the contents of the `_pointer` code as data, skips the first byte 
    @dev The function is intended for reading pointers generated by `write`
    @param _pointer to be read
    @param _start number of bytes to skip
    @param _end index before which to end extraction
    @return data read from `_pointer` contract
  */
  function read(address _pointer, uint256 _start, uint256 _end) internal view returns (bytes memory) {
    return Bytecode.codeAt(_pointer, _start + 1, _end + 1);
  }
}

File 5 of 11 : Bytecode.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


library Bytecode {
  error InvalidCodeAtRange(uint256 _size, uint256 _start, uint256 _end);

  /**
    @notice Generate a creation code that results on a contract with `_code` as bytecode
    @param _code The returning value of the resulting `creationCode`
    @return creationCode (constructor) for new contract
  */
  function creationCodeFor(bytes memory _code) internal pure returns (bytes memory) {
    /*
      0x00    0x63         0x63XXXXXX  PUSH4 _code.length  size
      0x01    0x80         0x80        DUP1                size size
      0x02    0x60         0x600e      PUSH1 14            14 size size
      0x03    0x60         0x6000      PUSH1 00            0 14 size size
      0x04    0x39         0x39        CODECOPY            size
      0x05    0x60         0x6000      PUSH1 00            0 size
      0x06    0xf3         0xf3        RETURN
      <CODE>
    */

    return abi.encodePacked(
      hex"63",
      uint32(_code.length),
      hex"80_60_0E_60_00_39_60_00_F3",
      _code
    );
  }

  /**
    @notice Returns the size of the code on a given address
    @param _addr Address that may or may not contain code
    @return size of the code on the given `_addr`
  */
  function codeSize(address _addr) internal view returns (uint256 size) {
    assembly { size := extcodesize(_addr) }
  }

  /**
    @notice Returns the code of a given address
    @dev It will fail if `_end < _start`
    @param _addr Address that may or may not contain code
    @param _start number of bytes of code to skip on read
    @param _end index before which to end extraction
    @return oCode read from `_addr` deployed bytecode

    Forked from: https://gist.github.com/KardanovIR/fe98661df9338c842b4a30306d507fbd
  */
  function codeAt(address _addr, uint256 _start, uint256 _end) internal view returns (bytes memory oCode) {
    uint256 csize = codeSize(_addr);
    if (csize == 0) return bytes("");

    if (_start > csize) return bytes("");
    if (_end < _start) revert InvalidCodeAtRange(csize, _start, _end); 

    unchecked {
      uint256 reqSize = _end - _start;
      uint256 maxSize = csize - _start;

      uint256 size = maxSize < reqSize ? maxSize : reqSize;

      assembly {
        // allocate output byte array - this could also be done without assembly
        // by using o_code = new bytes(size)
        oCode := mload(0x40)
        // new "memory end" including padding
        mstore(0x40, add(oCode, and(add(add(size, 0x20), 0x1f), not(0x1f))))
        // store length in memory
        mstore(oCode, size)
        // actually retrieve the code, this needs assembly
        extcodecopy(_addr, add(oCode, 0x20), _start, size)
      }
    }
  }
}

File 6 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 7 of 11 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

File 8 of 11 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 9 of 11 : 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 10 of 11 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * 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;
    }

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 11 of 11 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * 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();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

    /**
     * @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
    ) external;

    /**
     * @dev Transfers `tokenId` token 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;

    /**
     * @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;

    /**
     * @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);
}

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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"_size","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"InvalidCodeAtRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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"},{"inputs":[],"name":"WriteError","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[{"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":"struct IndelibleERC721A.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":"struct IndelibleERC721A.TraitDTO","name":"trait","type":"tuple"}],"name":"addTrait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","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":"string","name":"_baseURI","type":"string"}],"name":"changeBaseURI","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 IndelibleERC721A.ContractData","name":"_contractData","type":"tuple"}],"name":"changeContractData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerAddress","type":"uint256"}],"name":"changeMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_renderOffChain","type":"bool"}],"name":"changeRenderOfTokenId","outputs":[],"stateMutability":"nonpayable","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":"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":[{"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":"isMintingPaused","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":"maxFreePerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"nonpayable","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":"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":"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":"toggleMinting","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":"string","name":"","type":"string"}],"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":"struct IndelibleERC721A.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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6004610180818152631219585960e21b6101a0526080908152600a6101c0818152695570706572204661636560b01b6101e05260a052610200818152694c6f776572204661636560b01b6102205260c052610240838152634579657360e01b6102605260e052610280838152634e6f736560e01b6102a0526101005260036102c0908152622537b160e91b6102e052610120526103009283526329b5b4b760e11b610320526101409290925261038060405261034091825269109858dad9dc9bdd5b9960b21b6103605261016091909152620000e09060169060086200071c565b506017805460ff191660011790556064601855600060198190556611c37937e08000601a556040805160208101918290528290526200012391601b919062000780565b50601c805460ff191660011790556040805161012081018252601160e08201908152704661737420466f6f642052756e6e65727360781b6101008301528152815160608101909252603a80835290916020808401929062004b449083013981526020016040518060a001604052806062815260200162004ae26062913981526020016040518060a001604052806061815260200162004a816061913981526020016040518060200160405280600081525081526020016102b281526020016040518060600160405280602a815260200162004b7e602a9139905280518051601d91620002159183916020019062000780565b50602082810151805162000230926001850192019062000780565b50604082015180516200024e91600284019160209091019062000780565b50606082015180516200026c91600384019160209091019062000780565b50608082015180516200028a91600484019160209091019062000780565b5060a0820151600582015560c08201518051620002b291600684019160209091019062000780565b505050348015620002c257600080fd5b5060408051808201825260118152704661737420466f6f642052756e6e65727360781b60208083019182528351808501909452600384526223232960e91b908401528151919291620003179160029162000780565b5080516200032d90600390602084019062000780565b5060008055505060016008556200034433620006ca565b6040805161014081018252601e8152606360208201526087918101919091526101086060820152610136608082015261013860a082015261013d60c082015261022060e08201526102836101008201526102a7610120820152620003ad90600e90600a6200080b565b50604080516102608101825260158152602080820152602c9181019190915260396060820152604b6080820152604d60a0820152607060c0820152607360e0820152608f610100820152609761012082015260bb61014082015260c761016082015260d461018082015260d76101a082015261013e6101c08201526101486101e08201526101506102008201526101516102208201526101766102408201526200045c90600f9060136200080b565b506040805161022081018252603781526020810182905260419181019190915260436060820152604a608080830191909152606360a083015260c0820152608c60e082015260b761010082015260be61012082015260d06101408201526101046101608201526101436101808201526101476101a082015261015b6101c082015261018a6101e0820152610199610200820152620004ff9060109060116200080b565b506040805160e081018252605c8152607b60208201526101749181019190915261019c60608201526101c260808201526102d560a082015261048760c08201526200054f9060119060076200080b565b506040805160a081018252610123815261013d60208201526102ee9181019190915261038b606082015261042c6080820152620005919060129060056200080b565b506040805160c081018252608b815260b460208201526101eb9181019190915261028460608201526102dc608082015261047b60a0820152620005d99060139060066200080b565b506040805160a08101825261016481526101a0602082015261027f9181019190915261037c606082015261040660808201526200061b9060149060056200080b565b50604080516102408101825260038152600760208201526010918101919091526033606082015260486080820152608260a0820152608b60c0820152608f60e082015260a461010082015260a761012082015260a861014082015260c161016082015260dc61018082015261010d6101a08201526101436101c082015261015f6101e08201526101bd6102008201526101d8610220820152620006c39060159060126200080b565b5062000905565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280548282559060005260206000209081019282156200076e579160200282015b828111156200076e57825180516200075d91849160209091019062000780565b50916020019190600101906200073d565b506200077c9291506200084f565b5090565b8280546200078e90620008c9565b90600052602060002090601f016020900481019282620007b25760008555620007fd565b82601f10620007cd57805160ff1916838001178555620007fd565b82800160010185558215620007fd579182015b82811115620007fd578251825591602001919060010190620007e0565b506200077c92915062000870565b828054828255906000526020600020908101928215620007fd579160200282015b82811115620007fd578251829061ffff169055916020019190600101906200082c565b808211156200077c57600062000866828262000887565b506001016200084f565b5b808211156200077c576000815560010162000871565b5080546200089590620008c9565b6000825580601f10620008a6575050565b601f016020900490600052602060002090810190620008c6919062000870565b50565b600181811c90821680620008de57607f821691505b602082108103620008ff57634e487b7160e01b600052602260045260246000fd5b50919050565b61416c80620009156000396000f3fe6080604052600436106102515760003560e01c80636c0360eb11610139578063b88d4fde116100b6578063e83157421161007a578063e83157421461069c578063e8a3d485146106b2578063e985e9c5146106c7578063ea84b59b14610710578063f2fde38b1461073d578063f4464cf11461075d57600080fd5b8063b88d4fde146105fc578063c11feac11461061c578063c5c627fb1461063c578063c87b56dd1461065c578063cbf5fe4e1461067c57600080fd5b806389ce3074116100fd57806389ce3074146105765780638da5cb5b1461059657806395d89b41146105b4578063a0712d68146105c9578063a22cb465146105dc57600080fd5b80636c0360eb146104f757806370a082311461050c578063715018a61461052c578063716e43d7146105415780637d55094d1461056157600080fd5b806339a0c6f9116101d2578063579d9b4011610196578063579d9b401461044b578063621a1f741461046b5780636352211e1461048b578063639814e0146104ab57806366e33870146104c15780636817c76c146104e157600080fd5b806339a0c6f9146103b95780633cca2420146103d95780633ccfd60b1461040157806342842e0e146104165780634920154b1461043657600080fd5b80630e4324ab116102195780630e4324ab1461032757806318160ddd1461034757806323b872dd1461036a5780632d6b62241461038a5780632e105b421461039f57600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806309dbabca14610307575b600080fd5b34801561026257600080fd5b50610276610271366004612f87565b610773565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107c5565b6040516102829190612ffc565b3480156102b957600080fd5b506102cd6102c836600461300f565b610857565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004613044565b61089b565b005b34801561031357600080fd5b506102a061032236600461306e565b61096d565b34801561033357600080fd5b506103056103423660046130a0565b6109b5565b34801561035357600080fd5b50600154600054035b604051908152602001610282565b34801561037657600080fd5b506103056103853660046130cc565b610a5d565b34801561039657600080fd5b50610276610a6d565b3480156103ab57600080fd5b50601c546102769060ff1681565b3480156103c557600080fd5b506103056103d43660046131e5565b610a90565b3480156103e557600080fd5b506103ee610ad1565b6040516102829796959493929190613219565b34801561040d57600080fd5b50610305610e2f565b34801561042257600080fd5b506103056104313660046130cc565b610f44565b34801561044257600080fd5b50610305610f5f565b34801561045757600080fd5b5061030561046636600461300f565b610f9d565b34801561047757600080fd5b506102a061048636600461300f565b610fcc565b34801561049757600080fd5b506102cd6104a636600461300f565b611042565b3480156104b757600080fd5b5061035c60185481565b3480156104cd57600080fd5b506102a06104dc3660046131e5565b61104d565b3480156104ed57600080fd5b5061035c601a5481565b34801561050357600080fd5b506102a06111a9565b34801561051857600080fd5b5061035c6105273660046132a2565b611237565b34801561053857600080fd5b50610305611285565b34801561054d57600080fd5b5061030561055c36600461336b565b6112bb565b34801561056d57600080fd5b506103056114ff565b34801561058257600080fd5b506102a06105913660046131e5565b61153d565b3480156105a257600080fd5b506009546001600160a01b03166102cd565b3480156105c057600080fd5b506102a0611741565b61035c6105d736600461300f565b611750565b3480156105e857600080fd5b506103056105f7366004613439565b611ab2565b34801561060857600080fd5b50610305610617366004613463565b611b47565b34801561062857600080fd5b506102a061063736600461300f565b611b8b565b34801561064857600080fd5b506103056106573660046134ca565b611b99565b34801561066857600080fd5b506102a061067736600461300f565b611cff565b34801561068857600080fd5b50610305610697366004613519565b611f7d565b3480156106a857600080fd5b5061035c610d0581565b3480156106be57600080fd5b506102a0612054565b3480156106d357600080fd5b506102766106e2366004613643565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561071c57600080fd5b5061073061072b36600461306e565b6120b2565b604051610282919061366d565b34801561074957600080fd5b506103056107583660046132a2565b612214565b34801561076957600080fd5b5061035c60195481565b60006301ffc9a760e01b6001600160e01b0319831614806107a457506380ac58cd60e01b6001600160e01b03198316145b806107bf5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107d4906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610800906136af565b801561084d5780601f106108225761010080835404028352916020019161084d565b820191906000526020600020905b81548152906001019060200180831161083057829003601f168201915b5050505050905090565b6000610862826122af565b61087f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108a6826122d6565b9050806001600160a01b0316836001600160a01b0316036108da5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610911576108f481336106e2565b610911576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600b6020526040902080546060916109ae9184908110610994576109946136e3565b6000918252602090912001546001600160a01b031661233d565b9392505050565b6109be82611042565b6001600160a01b0316336001600160a01b031614610a3d5760405162461bcd60e51b815260206004820152603160248201527f4f6e6c792074686520746f6b656e206f776e65722063616e206368616e6765206044820152701d1a19481c995b99195c881b595d1a1bd9607a1b60648201526084015b60405180910390fd5b6000918252600d6020526040909120805460ff1916911515919091179055565b610a6883838361234d565b505050565b6000610d05610a7b60005490565b108015610a8b5750601c5460ff16155b905090565b6009546001600160a01b03163314610aba5760405162461bcd60e51b8152600401610a34906136f9565b8051610acd90601b906020840190612e83565b5050565b601d80548190610ae0906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0c906136af565b8015610b595780601f10610b2e57610100808354040283529160200191610b59565b820191906000526020600020905b815481529060010190602001808311610b3c57829003601f168201915b505050505090806001018054610b6e906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9a906136af565b8015610be75780601f10610bbc57610100808354040283529160200191610be7565b820191906000526020600020905b815481529060010190602001808311610bca57829003601f168201915b505050505090806002018054610bfc906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610c28906136af565b8015610c755780601f10610c4a57610100808354040283529160200191610c75565b820191906000526020600020905b815481529060010190602001808311610c5857829003601f168201915b505050505090806003018054610c8a906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb6906136af565b8015610d035780601f10610cd857610100808354040283529160200191610d03565b820191906000526020600020905b815481529060010190602001808311610ce657829003601f168201915b505050505090806004018054610d18906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610d44906136af565b8015610d915780601f10610d6657610100808354040283529160200191610d91565b820191906000526020600020905b815481529060010190602001808311610d7457829003601f168201915b505050505090806005015490806006018054610dac906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd8906136af565b8015610e255780601f10610dfa57610100808354040283529160200191610e25565b820191906000526020600020905b815481529060010190602001808311610e0857829003601f168201915b5050505050905087565b6009546001600160a01b03163314610e595760405162461bcd60e51b8152600401610a34906136f9565b600260085403610eab5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a34565b6002600855604051600090339047908381818185875af1925050503d8060008114610ef2576040519150601f19603f3d011682016040523d82523d6000602084013e610ef7565b606091505b5050905080610f3c5760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401610a34565b506001600855565b610a6883838360405180602001604052806000815250611b47565b6009546001600160a01b03163314610f895760405162461bcd60e51b8152600401610a34906136f9565b6017805460ff19811660ff90911615179055565b6009546001600160a01b03163314610fc75760405162461bcd60e51b8152600401610a34906136f9565b601855565b606060005b6014811015610251576000600a81610fe98487613744565b8152602001908152602001600020541115611030576109ae600a600061100f8487613744565b81526020019081526020016000205484838661102b9190613744565b6124f2565b8061103a8161375b565b915050610fd1565b60006107bf826122d6565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b9183019190915260609161108f90829061269c565b60005b60088110156111a25760006110cf6110ca866110af856003613774565b6110ba866003613774565b6110c5906003613793565b612721565b6127ed565b60ff169050611132601683815481106110ea576110ea6136e3565b60009182526020808320868452600c82526040808520878652835293849020935161111b9493909101929101613844565b60408051601f19818403018152919052849061269c565b61113e60016008613744565b820361116c576040805180820190915260018152605d60f81b602082015261116790849061269c565b61118f565b6040805180820190915260018152600b60fa1b602082015261118f90849061269c565b508061119a8161375b565b915050611092565b5092915050565b601b80546111b6906136af565b80601f01602080910402602001604051908101604052809291908181526020018280546111e2906136af565b801561122f5780601f106112045761010080835404028352916020019161122f565b820191906000526020600020905b81548152906001019060200180831161121257829003601f168201915b505050505081565b60006001600160a01b038216611260576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b031633146112af5760405162461bcd60e51b8152600401610a34906136f9565b6112b960006128ab565b565b6009546001600160a01b031633146112e55760405162461bcd60e51b8152600401610a34906136f9565b8051600e83600881106112fa576112fa6136e3565b0154146113615760405162461bcd60e51b815260206004820152602f60248201527f5472616974732073697a6520646f6573206e6f74206d6174636820746965727360448201526e040ccdee440e8d0d2e640d2dcc8caf608b1b6064820152608401610a34565b60648151106113825760405162461bcd60e51b8152600401610a349061389a565b600081516001600160401b0381111561139d5761139d613108565b6040519080825280602002602001820160405280156113c6578160200160208202803683370190505b50905060005b82518110156114d9576113fb8382815181106113ea576113ea6136e3565b6020026020010151604001516128fd565b82828151811061140d5761140d6136e3565b60200260200101906001600160a01b031690816001600160a01b031681525050604051806040016040528084838151811061144a5761144a6136e3565b602002602001015160000151815260200184838151811061146d5761146d6136e3565b6020908102919091018101518101519091526000868152600c82526040808220858352835290208251805191926114a992849290910190612e83565b5060208281015180516114c29260018501920190612e83565b5090505080806114d19061375b565b9150506113cc565b506000838152600b6020908152604090912082516114f992840190612f07565b50505050565b6009546001600160a01b031633146115295760405162461bcd60e51b8152600401610a34906136f9565b601c805460ff19811660ff90911615179055565b6040805162020060810190915262020040815260006020909101818152606091906115816040518060c001604052806085815260200161407260859139829061269c565b60005b61159060016008613744565b81101561164c576115b46110ca866115a9846003613774565b6110ba856003613774565b60ff16925061163a600c6000838152602001908152602001600020600085815260200190815260200160002060010161161261160d600b60008681526020019081526020016000208781548110610994576109946136e3565b612962565b6040516020016116239291906138e2565b60408051601f19818403018152919052839061269c565b806116448161375b565b915050611584565b506116776110ca856003611661600882613774565b61166b9190613744565b6110c560086003613774565b60ff169150611710600c600061168f60016008613744565b815260200190815260200160002060008481526020019081526020016000206001016116e861160d600b6000600160086116c99190613744565b81526020019081526020016000208681548110610994576109946136e3565b6040516020016116f992919061393c565b60408051601f19818403018152919052829061269c565b61171981612962565b6040516020016117299190613aa0565b60405160208183030381529060405292505050919050565b6060600380546107d4906136af565b60006002600854036117a45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a34565b60026008556117b1610a6d565b6117f45760405162461bcd60e51b8152602060048201526014602482015273283ab13634b19039b0b632903737ba1037b832b760611b6044820152606401610a34565b6000548261183a5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b6044820152606401610a34565b610d056118478483613793565b111561188b5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b6044820152606401610a34565b34601a548461189a9190613774565b146118e75760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610a34565b601854836118f433611237565b6118fe9190613793565b111561194c5760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d6178206d696e747320616c6c6f7765642e00000000006044820152606401610a34565b6000611959601485613afb565b90506000611968601486613b0f565b905060003a43424461197b600184613744565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6bffffffffffffffffffffffff191660c082015260d4016040516020818303038152906040528051906020012060001c905060005b83811015611a495780600003611a00576000858152600a60205260409020829055611a2c565b81600a6000611a10601485613774565b611a1a9089613793565b81526020810191909152604001600020555b611a37336014612ab4565b80611a418161375b565b9150506119da565b508115611aa45782600003611a6e576000848152600a60205260409020819055611a9a565b80600a6000611a7e601487613774565b611a889088613793565b81526020810191909152604001600020555b611aa43383612ab4565b505060016008555092915050565b336001600160a01b03831603611adb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b5284848461234d565b6001600160a01b0383163b156114f957611b6e84848484612b95565b6114f9576040516368d2bf6b60e11b815260040160405180910390fd5b60606107bf61059183610fcc565b6009546001600160a01b03163314611bc35760405162461bcd60e51b8152600401610a34906136f9565b60638210611be35760405162461bcd60e51b8152600401610a349061389a565b60408051808201825282518152602080840151818301526000868152600c82528381208682528252929092208151805192939192611c249284920190612e83565b506020828101518051611c3d9260018501920190612e83565b5050506000838152600b6020908152604080832080548251818502810185019093528083529192909190830182828015611ca057602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611c82575b50505050509050611cb482604001516128fd565b818481518110611cc657611cc66136e3565b6001600160a01b039092166020928302919091018201526000858152600b8252604090208251611cf892840190612f07565b5050505050565b6060611d0a826122af565b611d465760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a34565b60008052600b6020527fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f7654611dbd5760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e2061646465640000000000006044820152606401610a34565b6000611dc883610fcc565b604080516202006081018252620200408152600060209182019081528251808401909352601c83527f7b226e616d65223a224661737420466f6f642052756e6e65727320230000000091830191909152919250611e2690829061269c565b611e45611e3285612c81565b6040516116f99190601e90602001613b23565b6000601b8054611e54906136af565b9050118015611e7157506000848152600d602052604090205460ff165b15611e9c57611e97601b611e8486612c81565b846040516020016116f993929190613b71565b611f48565b60408051602081019091526000815260175460ff1615611f26576000611ec18461153d565b9050611eeb81604051602001611ed79190613bec565b604051602081830303815290604052612962565b604051602001611efb9190613aa0565b6040516020818303038152906040529150611f208160405160200161111b9190613cd7565b50611f32565b611f2f8361153d565b90505b611f46816040516020016116239190613d1e565b505b611f64611f548361104d565b6040516020016116f99190613d61565b611f6d81612962565b6040516020016117299190613da2565b6009546001600160a01b03163314611fa75760405162461bcd60e51b8152600401610a34906136f9565b805180518291601d91611fc1918391602090910190612e83565b506020828101518051611fda9260018501920190612e83565b5060408201518051611ff6916002840191602090910190612e83565b5060608201518051612012916003840191602090910190612e83565b506080820151805161202e916004840191602090910190612e83565b5060a0820151600582015560c082015180516114f9916006840191602090910190612e83565b60225460609061208e90601d90601e90601f9060209060219061207690612c81565b604051611ed796959493929190602390602001613de7565b60405160200161209e9190613da2565b604051602081830303815290604052905090565b60408051808201909152606080825260208201526000838152600c602090815260408083208584529091529081902081518083019092528054829082906120f8906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054612124906136af565b80156121715780601f1061214657610100808354040283529160200191612171565b820191906000526020600020905b81548152906001019060200180831161215457829003601f168201915b5050505050815260200160018201805461218a906136af565b80601f01602080910402602001604051908101604052809291908181526020018280546121b6906136af565b80156122035780601f106121d857610100808354040283529160200191612203565b820191906000526020600020905b8154815290600101906020018083116121e657829003601f168201915b505050505081525050905092915050565b6009546001600160a01b0316331461223e5760405162461bcd60e51b8152600401610a34906136f9565b6001600160a01b0381166122a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a34565b6122ac816128ab565b50565b60008054821080156107bf575050600090815260046020526040902054600160e01b161590565b6000816000548110156123245760008181526004602052604081205490600160e01b82169003612322575b806000036109ae575060001901600081815260046020526040902054612301565b505b604051636f96cda160e11b815260040160405180910390fd5b60606107bf826001600019612cd0565b6000612358826122d6565b9050836001600160a01b0316816001600160a01b03161461238b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806123a957506123a985336106e2565b806123c45750336123b984610857565b6001600160a01b0316145b9050806123e457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661240b57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036124ac576001830160008181526004602052604081205490036124aa5760005481146124aa5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cf8565b60606124fd836122af565b6125395760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a34565b600061256761254a60086004613774565b604080518281016060018252910181526000602090910190815290565b905060005b6008811015612693576000610d058787876125878683613793565b6040805160208101959095528401929092526060830152608082015260a0016040516020818303038152906040528051906020012060001c6125c99190613b0f565b905060006125d78284612d85565b9050600a81101561260b57604080518082019091526002815261030360f41b602082015261260690859061269c565b612637565b6064811015612637576040805180820190915260018152600360fc1b602082015261263790859061269c565b6103e781111561266b5760408051808201909152600381526239393960e81b602082015261266690859061269c565b61267e565b61267e61267782612c81565b859061269c565b5050808061268b9061375b565b91505061256c565b50949350505050565b601f1982015182518251603f199092019182906126b99083613793565b11156127175760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b6064820152608401610a34565b6114f98484612e21565b60608360006127308585613744565b6001600160401b0381111561274757612747613108565b6040519080825280601f01601f191660200182016040528015612771576020820181803683370190505b509050845b848110156127e357828181518110612790576127906136e3565b01602001516001600160f81b031916826127aa8884613744565b815181106127ba576127ba6136e3565b60200101906001600160f81b031916908160001a905350806127db8161375b565b915050612776565b5095945050505050565b60008181805b82518160ff1610156128a3576030838260ff1681518110612816576128166136e3565b016020015160f81c1080159061284957506039838260ff168151811061283e5761283e6136e3565b016020015160f81c11155b1561289157612859600a83613f10565b91506030838260ff1681518110612872576128726136e3565b0160200151612884919060f81c613f39565b61288e9083613f5c565b91505b8061289b81613f81565b9150506127f3565b509392505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080612928836040516020016129149190613fa0565b604051602081830303815290604052612e57565b90508051602082016000f091506001600160a01b03821661295c5760405163046a55db60e11b815260040160405180910390fd5b50919050565b6060815160000361298157505060408051602081019091526000815290565b60006040518060600160405280604081526020016140f760409139905060006003845160026129b09190613793565b6129ba9190613afb565b6129c5906004613774565b6001600160401b038111156129dc576129dc613108565b6040519080825280601f01601f191660200182016040528015612a06576020820181803683370190505b509050600182016020820185865187015b80821015612a72576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250612a17565b5050600386510660018114612a8e5760028114612aa157612aa9565b603d6001830353603d6002830353612aa9565b603d60018303535b509195945050505050565b6000546001600160a01b038316612add57604051622e076360e81b815260040160405180910390fd5b81600003612afe5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612b495750600055505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612bca903390899088908890600401613fc6565b6020604051808303816000875af1925050508015612c05575060408051601f3d908101601f19168201909252612c0291810190614003565b60015b612c63573d808015612c33576040519150601f19603f3d011682016040523d82523d6000602084013e612c38565b606091505b508051600003612c5b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015612cbe57600183039250600a81066030018353600a9004612ca0565b50819003601f19909101908152919050565b6060833b6000819003612cf35750506040805160208101909152600081526109ae565b80841115612d115750506040805160208101909152600081526109ae565b83831015612d435760405163162544fd60e11b8152600481018290526024810185905260448101849052606401610a34565b8383038482036000828210612d585782612d5a565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b600080805b600e8460088110612d9d57612d9d6136e3565b0154811015610251576000600e8560088110612dbb57612dbb6136e3565b018281548110612dcd57612dcd6136e3565b90600052602060002001549050828610158015612df25750612def8184613793565b86105b15612e01575091506107bf9050565b612e0b8184613793565b9250508080612e199061375b565b915050612d8a565b8051602082019150808201602084510184015b81841015612e4c578351815260209384019301612e34565b505082510190915250565b6060815182604051602001612e6d929190614020565b6040516020818303038152906040529050919050565b828054612e8f906136af565b90600052602060002090601f016020900481019282612eb15760008555612ef7565b82601f10612eca57805160ff1916838001178555612ef7565b82800160010185558215612ef7579182015b82811115612ef7578251825591602001919060010190612edc565b50612f03929150612f5c565b5090565b828054828255906000526020600020908101928215612ef7579160200282015b82811115612ef757825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612f27565b5b80821115612f035760008155600101612f5d565b6001600160e01b0319811681146122ac57600080fd5b600060208284031215612f9957600080fd5b81356109ae81612f71565b60005b83811015612fbf578181015183820152602001612fa7565b838111156114f95750506000910152565b60008151808452612fe8816020860160208601612fa4565b601f01601f19169290920160200192915050565b6020815260006109ae6020830184612fd0565b60006020828403121561302157600080fd5b5035919050565b80356001600160a01b038116811461303f57600080fd5b919050565b6000806040838503121561305757600080fd5b61306083613028565b946020939093013593505050565b6000806040838503121561308157600080fd5b50508035926020909101359150565b8035801515811461303f57600080fd5b600080604083850312156130b357600080fd5b823591506130c360208401613090565b90509250929050565b6000806000606084860312156130e157600080fd5b6130ea84613028565b92506130f860208501613028565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b038111828210171561314057613140613108565b60405290565b604051601f8201601f191681016001600160401b038111828210171561316e5761316e613108565b604052919050565b600082601f83011261318757600080fd5b81356001600160401b038111156131a0576131a0613108565b6131b3601f8201601f1916602001613146565b8181528460208386010111156131c857600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156131f757600080fd5b81356001600160401b0381111561320d57600080fd5b612c7984828501613176565b60e08152600061322c60e083018a612fd0565b828103602084015261323e818a612fd0565b905082810360408401526132528189612fd0565b905082810360608401526132668188612fd0565b9050828103608084015261327a8187612fd0565b90508460a084015282810360c08401526132948185612fd0565b9a9950505050505050505050565b6000602082840312156132b457600080fd5b6109ae82613028565b6000606082840312156132cf57600080fd5b604051606081016001600160401b0382821081831117156132f2576132f2613108565b81604052829350843591508082111561330a57600080fd5b61331686838701613176565b8352602085013591508082111561332c57600080fd5b61333886838701613176565b6020840152604085013591508082111561335157600080fd5b5061335e85828601613176565b6040830152505092915050565b6000806040838503121561337e57600080fd5b823591506020808401356001600160401b038082111561339d57600080fd5b818601915086601f8301126133b157600080fd5b8135818111156133c3576133c3613108565b8060051b6133d2858201613146565b918252838101850191858101908a8411156133ec57600080fd5b86860192505b838310156134285782358581111561340a5760008081fd5b6134188c89838a01016132bd565b83525091860191908601906133f2565b809750505050505050509250929050565b6000806040838503121561344c57600080fd5b61345583613028565b91506130c360208401613090565b6000806000806080858703121561347957600080fd5b61348285613028565b935061349060208601613028565b92506040850135915060608501356001600160401b038111156134b257600080fd5b6134be87828801613176565b91505092959194509250565b6000806000606084860312156134df57600080fd5b833592506020840135915060408401356001600160401b0381111561350357600080fd5b61350f868287016132bd565b9150509250925092565b60006020828403121561352b57600080fd5b81356001600160401b038082111561354257600080fd5b9083019060e0828603121561355657600080fd5b61355e61311e565b82358281111561356d57600080fd5b61357987828601613176565b82525060208301358281111561358e57600080fd5b61359a87828601613176565b6020830152506040830135828111156135b257600080fd5b6135be87828601613176565b6040830152506060830135828111156135d657600080fd5b6135e287828601613176565b6060830152506080830135828111156135fa57600080fd5b61360687828601613176565b60808301525060a083013560a082015260c08301358281111561362857600080fd5b61363487828601613176565b60c08301525095945050505050565b6000806040838503121561365657600080fd5b61365f83613028565b91506130c360208401613028565b6020815260008251604060208401526136896060840182612fd0565b90506020840151601f198483030160408501526136a68282612fd0565b95945050505050565b600181811c908216806136c357607f821691505b60208210810361295c57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156137565761375661372e565b500390565b60006001820161376d5761376d61372e565b5060010190565b600081600019048311821515161561378e5761378e61372e565b500290565b600082198211156137a6576137a661372e565b500190565b8054600090600181811c90808316806137c557607f831692505b602080841082036137e657634e487b7160e01b600052602260045260246000fd5b8180156137fa576001811461380b57613838565b60ff19861689528489019650613838565b60008881526020902060005b868110156138305781548b820152908501908301613817565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b81526000613868600f8301856137ab565b6a1116113b30b63ab2911d1160a91b8152613886600b8201856137ab565b61227d60f01b815260020195945050505050565b60208082526028908201527f54686572652063616e6e6f74206265206f76657220393920747261697473207060408201526732b9103630bcb2b960c11b606082015260800190565b643230ba309d60d91b815260006138fc60058301856137ab565b670ed8985cd94d8d0b60c21b8152835161391d816008840160208801612fa4565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b8152600061395660058301856137ab565b670ed8985cd94d8d0b60c21b81528351613977816008840160208801612fa4565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000815260008251613ad881601a850160208701612fa4565b91909101601a0192915050565b634e487b7160e01b600052601260045260246000fd5b600082613b0a57613b0a613ae5565b500490565b600082613b1e57613b1e613ae5565b500690565b60008351613b35818460208801612fa4565b701116113232b9b1b934b83a34b7b7111d1160791b908301908152613b5d60118201856137ab565b61088b60f21b815260020195945050505050565b681134b6b0b3b2911d1160b91b81526000613b8f60098301866137ab565b8451613b9f818360208901612fa4565b643f646e613d60d81b91019081528351613bc0816005840160208801612fa4565b71099b995d1ddbdc9acf5b585a5b9b995d088b60721b6005929091019182015260170195945050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b608082015260008251613cb0816091850160208701612fa4565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b711139bb33afb4b6b0b3b2afb230ba30911d1160711b81528151600090613d05816012850160208701612fa4565b61088b60f21b6012939091019283015250601401919050565b6d1134b6b0b3b2afb230ba30911d1160911b81528151600090613d4881600e850160208701612fa4565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b81528151600090613d8a81600d850160208701612fa4565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613dda81601d850160208701612fa4565b91909101601d0192915050565b683d913730b6b2911d1160b91b81526000613e05600983018a6137ab565b701116113232b9b1b934b83a34b7b7111d1160791b8152613e29601182018a6137ab565b6a11161134b6b0b3b2911d1160a91b81529050613e49600b8201896137ab565b6b1116113130b73732b9111d1160a11b81529050613e6a600c8201886137ab565b7211161132bc3a32b93730b62fb634b735911d1160691b81529050613e9260138201876137ab565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a0000000081528451613eca81601c840160208901612fa4565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c9290910191820152613ef7602e8201856137ab565b61227d60f01b81526002019a9950505050505050505050565b600060ff821660ff84168160ff0481118215151615613f3157613f3161372e565b029392505050565b600060ff821660ff841680821015613f5357613f5361372e565b90039392505050565b600060ff821660ff84168060ff03821115613f7957613f7961372e565b019392505050565b600060ff821660ff8103613f9757613f9761372e565b60010192915050565b6000815260008251613fb9816001850160208701612fa4565b9190910160010192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613ff990830184612fd0565b9695505050505050565b60006020828403121561401557600080fd5b81516109ae81612f71565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b6005820152815160009061406381600e850160208701612fa4565b91909101600e01939250505056fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d696d6167653a75726c284142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220766e6b4e9d2787ae85457946c05a84c664da34fc1f2bb0c5cc2edf01df2e05de64736f6c634300080e003368747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f62616e6e65722f34383136333134632d386363312d346633652d393032332d36656230393032386437666268747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f70726f66696c652f34383136333134632d386363312d346633652d393032332d3665623039303238643766624661737420666f6f642072756e6e65727320636f6d696e6720746f2061206d6567612063697479206c6f636174696f6e206e65617220796f7521307838353932394265303037363666384166343431333946433045303663336431383845336633316264

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636c0360eb11610139578063b88d4fde116100b6578063e83157421161007a578063e83157421461069c578063e8a3d485146106b2578063e985e9c5146106c7578063ea84b59b14610710578063f2fde38b1461073d578063f4464cf11461075d57600080fd5b8063b88d4fde146105fc578063c11feac11461061c578063c5c627fb1461063c578063c87b56dd1461065c578063cbf5fe4e1461067c57600080fd5b806389ce3074116100fd57806389ce3074146105765780638da5cb5b1461059657806395d89b41146105b4578063a0712d68146105c9578063a22cb465146105dc57600080fd5b80636c0360eb146104f757806370a082311461050c578063715018a61461052c578063716e43d7146105415780637d55094d1461056157600080fd5b806339a0c6f9116101d2578063579d9b4011610196578063579d9b401461044b578063621a1f741461046b5780636352211e1461048b578063639814e0146104ab57806366e33870146104c15780636817c76c146104e157600080fd5b806339a0c6f9146103b95780633cca2420146103d95780633ccfd60b1461040157806342842e0e146104165780634920154b1461043657600080fd5b80630e4324ab116102195780630e4324ab1461032757806318160ddd1461034757806323b872dd1461036a5780632d6b62241461038a5780632e105b421461039f57600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806309dbabca14610307575b600080fd5b34801561026257600080fd5b50610276610271366004612f87565b610773565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107c5565b6040516102829190612ffc565b3480156102b957600080fd5b506102cd6102c836600461300f565b610857565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004613044565b61089b565b005b34801561031357600080fd5b506102a061032236600461306e565b61096d565b34801561033357600080fd5b506103056103423660046130a0565b6109b5565b34801561035357600080fd5b50600154600054035b604051908152602001610282565b34801561037657600080fd5b506103056103853660046130cc565b610a5d565b34801561039657600080fd5b50610276610a6d565b3480156103ab57600080fd5b50601c546102769060ff1681565b3480156103c557600080fd5b506103056103d43660046131e5565b610a90565b3480156103e557600080fd5b506103ee610ad1565b6040516102829796959493929190613219565b34801561040d57600080fd5b50610305610e2f565b34801561042257600080fd5b506103056104313660046130cc565b610f44565b34801561044257600080fd5b50610305610f5f565b34801561045757600080fd5b5061030561046636600461300f565b610f9d565b34801561047757600080fd5b506102a061048636600461300f565b610fcc565b34801561049757600080fd5b506102cd6104a636600461300f565b611042565b3480156104b757600080fd5b5061035c60185481565b3480156104cd57600080fd5b506102a06104dc3660046131e5565b61104d565b3480156104ed57600080fd5b5061035c601a5481565b34801561050357600080fd5b506102a06111a9565b34801561051857600080fd5b5061035c6105273660046132a2565b611237565b34801561053857600080fd5b50610305611285565b34801561054d57600080fd5b5061030561055c36600461336b565b6112bb565b34801561056d57600080fd5b506103056114ff565b34801561058257600080fd5b506102a06105913660046131e5565b61153d565b3480156105a257600080fd5b506009546001600160a01b03166102cd565b3480156105c057600080fd5b506102a0611741565b61035c6105d736600461300f565b611750565b3480156105e857600080fd5b506103056105f7366004613439565b611ab2565b34801561060857600080fd5b50610305610617366004613463565b611b47565b34801561062857600080fd5b506102a061063736600461300f565b611b8b565b34801561064857600080fd5b506103056106573660046134ca565b611b99565b34801561066857600080fd5b506102a061067736600461300f565b611cff565b34801561068857600080fd5b50610305610697366004613519565b611f7d565b3480156106a857600080fd5b5061035c610d0581565b3480156106be57600080fd5b506102a0612054565b3480156106d357600080fd5b506102766106e2366004613643565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561071c57600080fd5b5061073061072b36600461306e565b6120b2565b604051610282919061366d565b34801561074957600080fd5b506103056107583660046132a2565b612214565b34801561076957600080fd5b5061035c60195481565b60006301ffc9a760e01b6001600160e01b0319831614806107a457506380ac58cd60e01b6001600160e01b03198316145b806107bf5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107d4906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610800906136af565b801561084d5780601f106108225761010080835404028352916020019161084d565b820191906000526020600020905b81548152906001019060200180831161083057829003601f168201915b5050505050905090565b6000610862826122af565b61087f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108a6826122d6565b9050806001600160a01b0316836001600160a01b0316036108da5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610911576108f481336106e2565b610911576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600b6020526040902080546060916109ae9184908110610994576109946136e3565b6000918252602090912001546001600160a01b031661233d565b9392505050565b6109be82611042565b6001600160a01b0316336001600160a01b031614610a3d5760405162461bcd60e51b815260206004820152603160248201527f4f6e6c792074686520746f6b656e206f776e65722063616e206368616e6765206044820152701d1a19481c995b99195c881b595d1a1bd9607a1b60648201526084015b60405180910390fd5b6000918252600d6020526040909120805460ff1916911515919091179055565b610a6883838361234d565b505050565b6000610d05610a7b60005490565b108015610a8b5750601c5460ff16155b905090565b6009546001600160a01b03163314610aba5760405162461bcd60e51b8152600401610a34906136f9565b8051610acd90601b906020840190612e83565b5050565b601d80548190610ae0906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0c906136af565b8015610b595780601f10610b2e57610100808354040283529160200191610b59565b820191906000526020600020905b815481529060010190602001808311610b3c57829003601f168201915b505050505090806001018054610b6e906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9a906136af565b8015610be75780601f10610bbc57610100808354040283529160200191610be7565b820191906000526020600020905b815481529060010190602001808311610bca57829003601f168201915b505050505090806002018054610bfc906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610c28906136af565b8015610c755780601f10610c4a57610100808354040283529160200191610c75565b820191906000526020600020905b815481529060010190602001808311610c5857829003601f168201915b505050505090806003018054610c8a906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb6906136af565b8015610d035780601f10610cd857610100808354040283529160200191610d03565b820191906000526020600020905b815481529060010190602001808311610ce657829003601f168201915b505050505090806004018054610d18906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610d44906136af565b8015610d915780601f10610d6657610100808354040283529160200191610d91565b820191906000526020600020905b815481529060010190602001808311610d7457829003601f168201915b505050505090806005015490806006018054610dac906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd8906136af565b8015610e255780601f10610dfa57610100808354040283529160200191610e25565b820191906000526020600020905b815481529060010190602001808311610e0857829003601f168201915b5050505050905087565b6009546001600160a01b03163314610e595760405162461bcd60e51b8152600401610a34906136f9565b600260085403610eab5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a34565b6002600855604051600090339047908381818185875af1925050503d8060008114610ef2576040519150601f19603f3d011682016040523d82523d6000602084013e610ef7565b606091505b5050905080610f3c5760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401610a34565b506001600855565b610a6883838360405180602001604052806000815250611b47565b6009546001600160a01b03163314610f895760405162461bcd60e51b8152600401610a34906136f9565b6017805460ff19811660ff90911615179055565b6009546001600160a01b03163314610fc75760405162461bcd60e51b8152600401610a34906136f9565b601855565b606060005b6014811015610251576000600a81610fe98487613744565b8152602001908152602001600020541115611030576109ae600a600061100f8487613744565b81526020019081526020016000205484838661102b9190613744565b6124f2565b8061103a8161375b565b915050610fd1565b60006107bf826122d6565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b9183019190915260609161108f90829061269c565b60005b60088110156111a25760006110cf6110ca866110af856003613774565b6110ba866003613774565b6110c5906003613793565b612721565b6127ed565b60ff169050611132601683815481106110ea576110ea6136e3565b60009182526020808320868452600c82526040808520878652835293849020935161111b9493909101929101613844565b60408051601f19818403018152919052849061269c565b61113e60016008613744565b820361116c576040805180820190915260018152605d60f81b602082015261116790849061269c565b61118f565b6040805180820190915260018152600b60fa1b602082015261118f90849061269c565b508061119a8161375b565b915050611092565b5092915050565b601b80546111b6906136af565b80601f01602080910402602001604051908101604052809291908181526020018280546111e2906136af565b801561122f5780601f106112045761010080835404028352916020019161122f565b820191906000526020600020905b81548152906001019060200180831161121257829003601f168201915b505050505081565b60006001600160a01b038216611260576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b031633146112af5760405162461bcd60e51b8152600401610a34906136f9565b6112b960006128ab565b565b6009546001600160a01b031633146112e55760405162461bcd60e51b8152600401610a34906136f9565b8051600e83600881106112fa576112fa6136e3565b0154146113615760405162461bcd60e51b815260206004820152602f60248201527f5472616974732073697a6520646f6573206e6f74206d6174636820746965727360448201526e040ccdee440e8d0d2e640d2dcc8caf608b1b6064820152608401610a34565b60648151106113825760405162461bcd60e51b8152600401610a349061389a565b600081516001600160401b0381111561139d5761139d613108565b6040519080825280602002602001820160405280156113c6578160200160208202803683370190505b50905060005b82518110156114d9576113fb8382815181106113ea576113ea6136e3565b6020026020010151604001516128fd565b82828151811061140d5761140d6136e3565b60200260200101906001600160a01b031690816001600160a01b031681525050604051806040016040528084838151811061144a5761144a6136e3565b602002602001015160000151815260200184838151811061146d5761146d6136e3565b6020908102919091018101518101519091526000868152600c82526040808220858352835290208251805191926114a992849290910190612e83565b5060208281015180516114c29260018501920190612e83565b5090505080806114d19061375b565b9150506113cc565b506000838152600b6020908152604090912082516114f992840190612f07565b50505050565b6009546001600160a01b031633146115295760405162461bcd60e51b8152600401610a34906136f9565b601c805460ff19811660ff90911615179055565b6040805162020060810190915262020040815260006020909101818152606091906115816040518060c001604052806085815260200161407260859139829061269c565b60005b61159060016008613744565b81101561164c576115b46110ca866115a9846003613774565b6110ba856003613774565b60ff16925061163a600c6000838152602001908152602001600020600085815260200190815260200160002060010161161261160d600b60008681526020019081526020016000208781548110610994576109946136e3565b612962565b6040516020016116239291906138e2565b60408051601f19818403018152919052839061269c565b806116448161375b565b915050611584565b506116776110ca856003611661600882613774565b61166b9190613744565b6110c560086003613774565b60ff169150611710600c600061168f60016008613744565b815260200190815260200160002060008481526020019081526020016000206001016116e861160d600b6000600160086116c99190613744565b81526020019081526020016000208681548110610994576109946136e3565b6040516020016116f992919061393c565b60408051601f19818403018152919052829061269c565b61171981612962565b6040516020016117299190613aa0565b60405160208183030381529060405292505050919050565b6060600380546107d4906136af565b60006002600854036117a45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a34565b60026008556117b1610a6d565b6117f45760405162461bcd60e51b8152602060048201526014602482015273283ab13634b19039b0b632903737ba1037b832b760611b6044820152606401610a34565b6000548261183a5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b6044820152606401610a34565b610d056118478483613793565b111561188b5760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b6044820152606401610a34565b34601a548461189a9190613774565b146118e75760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e7400006044820152606401610a34565b601854836118f433611237565b6118fe9190613793565b111561194c5760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d6178206d696e747320616c6c6f7765642e00000000006044820152606401610a34565b6000611959601485613afb565b90506000611968601486613b0f565b905060003a43424461197b600184613744565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6bffffffffffffffffffffffff191660c082015260d4016040516020818303038152906040528051906020012060001c905060005b83811015611a495780600003611a00576000858152600a60205260409020829055611a2c565b81600a6000611a10601485613774565b611a1a9089613793565b81526020810191909152604001600020555b611a37336014612ab4565b80611a418161375b565b9150506119da565b508115611aa45782600003611a6e576000848152600a60205260409020819055611a9a565b80600a6000611a7e601487613774565b611a889088613793565b81526020810191909152604001600020555b611aa43383612ab4565b505060016008555092915050565b336001600160a01b03831603611adb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b5284848461234d565b6001600160a01b0383163b156114f957611b6e84848484612b95565b6114f9576040516368d2bf6b60e11b815260040160405180910390fd5b60606107bf61059183610fcc565b6009546001600160a01b03163314611bc35760405162461bcd60e51b8152600401610a34906136f9565b60638210611be35760405162461bcd60e51b8152600401610a349061389a565b60408051808201825282518152602080840151818301526000868152600c82528381208682528252929092208151805192939192611c249284920190612e83565b506020828101518051611c3d9260018501920190612e83565b5050506000838152600b6020908152604080832080548251818502810185019093528083529192909190830182828015611ca057602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611c82575b50505050509050611cb482604001516128fd565b818481518110611cc657611cc66136e3565b6001600160a01b039092166020928302919091018201526000858152600b8252604090208251611cf892840190612f07565b5050505050565b6060611d0a826122af565b611d465760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a34565b60008052600b6020527fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f7654611dbd5760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e2061646465640000000000006044820152606401610a34565b6000611dc883610fcc565b604080516202006081018252620200408152600060209182019081528251808401909352601c83527f7b226e616d65223a224661737420466f6f642052756e6e65727320230000000091830191909152919250611e2690829061269c565b611e45611e3285612c81565b6040516116f99190601e90602001613b23565b6000601b8054611e54906136af565b9050118015611e7157506000848152600d602052604090205460ff165b15611e9c57611e97601b611e8486612c81565b846040516020016116f993929190613b71565b611f48565b60408051602081019091526000815260175460ff1615611f26576000611ec18461153d565b9050611eeb81604051602001611ed79190613bec565b604051602081830303815290604052612962565b604051602001611efb9190613aa0565b6040516020818303038152906040529150611f208160405160200161111b9190613cd7565b50611f32565b611f2f8361153d565b90505b611f46816040516020016116239190613d1e565b505b611f64611f548361104d565b6040516020016116f99190613d61565b611f6d81612962565b6040516020016117299190613da2565b6009546001600160a01b03163314611fa75760405162461bcd60e51b8152600401610a34906136f9565b805180518291601d91611fc1918391602090910190612e83565b506020828101518051611fda9260018501920190612e83565b5060408201518051611ff6916002840191602090910190612e83565b5060608201518051612012916003840191602090910190612e83565b506080820151805161202e916004840191602090910190612e83565b5060a0820151600582015560c082015180516114f9916006840191602090910190612e83565b60225460609061208e90601d90601e90601f9060209060219061207690612c81565b604051611ed796959493929190602390602001613de7565b60405160200161209e9190613da2565b604051602081830303815290604052905090565b60408051808201909152606080825260208201526000838152600c602090815260408083208584529091529081902081518083019092528054829082906120f8906136af565b80601f0160208091040260200160405190810160405280929190818152602001828054612124906136af565b80156121715780601f1061214657610100808354040283529160200191612171565b820191906000526020600020905b81548152906001019060200180831161215457829003601f168201915b5050505050815260200160018201805461218a906136af565b80601f01602080910402602001604051908101604052809291908181526020018280546121b6906136af565b80156122035780601f106121d857610100808354040283529160200191612203565b820191906000526020600020905b8154815290600101906020018083116121e657829003601f168201915b505050505081525050905092915050565b6009546001600160a01b0316331461223e5760405162461bcd60e51b8152600401610a34906136f9565b6001600160a01b0381166122a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a34565b6122ac816128ab565b50565b60008054821080156107bf575050600090815260046020526040902054600160e01b161590565b6000816000548110156123245760008181526004602052604081205490600160e01b82169003612322575b806000036109ae575060001901600081815260046020526040902054612301565b505b604051636f96cda160e11b815260040160405180910390fd5b60606107bf826001600019612cd0565b6000612358826122d6565b9050836001600160a01b0316816001600160a01b03161461238b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806123a957506123a985336106e2565b806123c45750336123b984610857565b6001600160a01b0316145b9050806123e457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661240b57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036124ac576001830160008181526004602052604081205490036124aa5760005481146124aa5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cf8565b60606124fd836122af565b6125395760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a34565b600061256761254a60086004613774565b604080518281016060018252910181526000602090910190815290565b905060005b6008811015612693576000610d058787876125878683613793565b6040805160208101959095528401929092526060830152608082015260a0016040516020818303038152906040528051906020012060001c6125c99190613b0f565b905060006125d78284612d85565b9050600a81101561260b57604080518082019091526002815261030360f41b602082015261260690859061269c565b612637565b6064811015612637576040805180820190915260018152600360fc1b602082015261263790859061269c565b6103e781111561266b5760408051808201909152600381526239393960e81b602082015261266690859061269c565b61267e565b61267e61267782612c81565b859061269c565b5050808061268b9061375b565b91505061256c565b50949350505050565b601f1982015182518251603f199092019182906126b99083613793565b11156127175760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b6064820152608401610a34565b6114f98484612e21565b60608360006127308585613744565b6001600160401b0381111561274757612747613108565b6040519080825280601f01601f191660200182016040528015612771576020820181803683370190505b509050845b848110156127e357828181518110612790576127906136e3565b01602001516001600160f81b031916826127aa8884613744565b815181106127ba576127ba6136e3565b60200101906001600160f81b031916908160001a905350806127db8161375b565b915050612776565b5095945050505050565b60008181805b82518160ff1610156128a3576030838260ff1681518110612816576128166136e3565b016020015160f81c1080159061284957506039838260ff168151811061283e5761283e6136e3565b016020015160f81c11155b1561289157612859600a83613f10565b91506030838260ff1681518110612872576128726136e3565b0160200151612884919060f81c613f39565b61288e9083613f5c565b91505b8061289b81613f81565b9150506127f3565b509392505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080612928836040516020016129149190613fa0565b604051602081830303815290604052612e57565b90508051602082016000f091506001600160a01b03821661295c5760405163046a55db60e11b815260040160405180910390fd5b50919050565b6060815160000361298157505060408051602081019091526000815290565b60006040518060600160405280604081526020016140f760409139905060006003845160026129b09190613793565b6129ba9190613afb565b6129c5906004613774565b6001600160401b038111156129dc576129dc613108565b6040519080825280601f01601f191660200182016040528015612a06576020820181803683370190505b509050600182016020820185865187015b80821015612a72576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250612a17565b5050600386510660018114612a8e5760028114612aa157612aa9565b603d6001830353603d6002830353612aa9565b603d60018303535b509195945050505050565b6000546001600160a01b038316612add57604051622e076360e81b815260040160405180910390fd5b81600003612afe5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612b495750600055505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612bca903390899088908890600401613fc6565b6020604051808303816000875af1925050508015612c05575060408051601f3d908101601f19168201909252612c0291810190614003565b60015b612c63573d808015612c33576040519150601f19603f3d011682016040523d82523d6000602084013e612c38565b606091505b508051600003612c5b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015612cbe57600183039250600a81066030018353600a9004612ca0565b50819003601f19909101908152919050565b6060833b6000819003612cf35750506040805160208101909152600081526109ae565b80841115612d115750506040805160208101909152600081526109ae565b83831015612d435760405163162544fd60e11b8152600481018290526024810185905260448101849052606401610a34565b8383038482036000828210612d585782612d5a565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b600080805b600e8460088110612d9d57612d9d6136e3565b0154811015610251576000600e8560088110612dbb57612dbb6136e3565b018281548110612dcd57612dcd6136e3565b90600052602060002001549050828610158015612df25750612def8184613793565b86105b15612e01575091506107bf9050565b612e0b8184613793565b9250508080612e199061375b565b915050612d8a565b8051602082019150808201602084510184015b81841015612e4c578351815260209384019301612e34565b505082510190915250565b6060815182604051602001612e6d929190614020565b6040516020818303038152906040529050919050565b828054612e8f906136af565b90600052602060002090601f016020900481019282612eb15760008555612ef7565b82601f10612eca57805160ff1916838001178555612ef7565b82800160010185558215612ef7579182015b82811115612ef7578251825591602001919060010190612edc565b50612f03929150612f5c565b5090565b828054828255906000526020600020908101928215612ef7579160200282015b82811115612ef757825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612f27565b5b80821115612f035760008155600101612f5d565b6001600160e01b0319811681146122ac57600080fd5b600060208284031215612f9957600080fd5b81356109ae81612f71565b60005b83811015612fbf578181015183820152602001612fa7565b838111156114f95750506000910152565b60008151808452612fe8816020860160208601612fa4565b601f01601f19169290920160200192915050565b6020815260006109ae6020830184612fd0565b60006020828403121561302157600080fd5b5035919050565b80356001600160a01b038116811461303f57600080fd5b919050565b6000806040838503121561305757600080fd5b61306083613028565b946020939093013593505050565b6000806040838503121561308157600080fd5b50508035926020909101359150565b8035801515811461303f57600080fd5b600080604083850312156130b357600080fd5b823591506130c360208401613090565b90509250929050565b6000806000606084860312156130e157600080fd5b6130ea84613028565b92506130f860208501613028565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b038111828210171561314057613140613108565b60405290565b604051601f8201601f191681016001600160401b038111828210171561316e5761316e613108565b604052919050565b600082601f83011261318757600080fd5b81356001600160401b038111156131a0576131a0613108565b6131b3601f8201601f1916602001613146565b8181528460208386010111156131c857600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156131f757600080fd5b81356001600160401b0381111561320d57600080fd5b612c7984828501613176565b60e08152600061322c60e083018a612fd0565b828103602084015261323e818a612fd0565b905082810360408401526132528189612fd0565b905082810360608401526132668188612fd0565b9050828103608084015261327a8187612fd0565b90508460a084015282810360c08401526132948185612fd0565b9a9950505050505050505050565b6000602082840312156132b457600080fd5b6109ae82613028565b6000606082840312156132cf57600080fd5b604051606081016001600160401b0382821081831117156132f2576132f2613108565b81604052829350843591508082111561330a57600080fd5b61331686838701613176565b8352602085013591508082111561332c57600080fd5b61333886838701613176565b6020840152604085013591508082111561335157600080fd5b5061335e85828601613176565b6040830152505092915050565b6000806040838503121561337e57600080fd5b823591506020808401356001600160401b038082111561339d57600080fd5b818601915086601f8301126133b157600080fd5b8135818111156133c3576133c3613108565b8060051b6133d2858201613146565b918252838101850191858101908a8411156133ec57600080fd5b86860192505b838310156134285782358581111561340a5760008081fd5b6134188c89838a01016132bd565b83525091860191908601906133f2565b809750505050505050509250929050565b6000806040838503121561344c57600080fd5b61345583613028565b91506130c360208401613090565b6000806000806080858703121561347957600080fd5b61348285613028565b935061349060208601613028565b92506040850135915060608501356001600160401b038111156134b257600080fd5b6134be87828801613176565b91505092959194509250565b6000806000606084860312156134df57600080fd5b833592506020840135915060408401356001600160401b0381111561350357600080fd5b61350f868287016132bd565b9150509250925092565b60006020828403121561352b57600080fd5b81356001600160401b038082111561354257600080fd5b9083019060e0828603121561355657600080fd5b61355e61311e565b82358281111561356d57600080fd5b61357987828601613176565b82525060208301358281111561358e57600080fd5b61359a87828601613176565b6020830152506040830135828111156135b257600080fd5b6135be87828601613176565b6040830152506060830135828111156135d657600080fd5b6135e287828601613176565b6060830152506080830135828111156135fa57600080fd5b61360687828601613176565b60808301525060a083013560a082015260c08301358281111561362857600080fd5b61363487828601613176565b60c08301525095945050505050565b6000806040838503121561365657600080fd5b61365f83613028565b91506130c360208401613028565b6020815260008251604060208401526136896060840182612fd0565b90506020840151601f198483030160408501526136a68282612fd0565b95945050505050565b600181811c908216806136c357607f821691505b60208210810361295c57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156137565761375661372e565b500390565b60006001820161376d5761376d61372e565b5060010190565b600081600019048311821515161561378e5761378e61372e565b500290565b600082198211156137a6576137a661372e565b500190565b8054600090600181811c90808316806137c557607f831692505b602080841082036137e657634e487b7160e01b600052602260045260246000fd5b8180156137fa576001811461380b57613838565b60ff19861689528489019650613838565b60008881526020902060005b868110156138305781548b820152908501908301613817565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b81526000613868600f8301856137ab565b6a1116113b30b63ab2911d1160a91b8152613886600b8201856137ab565b61227d60f01b815260020195945050505050565b60208082526028908201527f54686572652063616e6e6f74206265206f76657220393920747261697473207060408201526732b9103630bcb2b960c11b606082015260800190565b643230ba309d60d91b815260006138fc60058301856137ab565b670ed8985cd94d8d0b60c21b8152835161391d816008840160208801612fa4565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b8152600061395660058301856137ab565b670ed8985cd94d8d0b60c21b81528351613977816008840160208801612fa4565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000815260008251613ad881601a850160208701612fa4565b91909101601a0192915050565b634e487b7160e01b600052601260045260246000fd5b600082613b0a57613b0a613ae5565b500490565b600082613b1e57613b1e613ae5565b500690565b60008351613b35818460208801612fa4565b701116113232b9b1b934b83a34b7b7111d1160791b908301908152613b5d60118201856137ab565b61088b60f21b815260020195945050505050565b681134b6b0b3b2911d1160b91b81526000613b8f60098301866137ab565b8451613b9f818360208901612fa4565b643f646e613d60d81b91019081528351613bc0816005840160208801612fa4565b71099b995d1ddbdc9acf5b585a5b9b995d088b60721b6005929091019182015260170195945050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b608082015260008251613cb0816091850160208701612fa4565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b711139bb33afb4b6b0b3b2afb230ba30911d1160711b81528151600090613d05816012850160208701612fa4565b61088b60f21b6012939091019283015250601401919050565b6d1134b6b0b3b2afb230ba30911d1160911b81528151600090613d4881600e850160208701612fa4565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b81528151600090613d8a81600d850160208701612fa4565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613dda81601d850160208701612fa4565b91909101601d0192915050565b683d913730b6b2911d1160b91b81526000613e05600983018a6137ab565b701116113232b9b1b934b83a34b7b7111d1160791b8152613e29601182018a6137ab565b6a11161134b6b0b3b2911d1160a91b81529050613e49600b8201896137ab565b6b1116113130b73732b9111d1160a11b81529050613e6a600c8201886137ab565b7211161132bc3a32b93730b62fb634b735911d1160691b81529050613e9260138201876137ab565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a0000000081528451613eca81601c840160208901612fa4565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c9290910191820152613ef7602e8201856137ab565b61227d60f01b81526002019a9950505050505050505050565b600060ff821660ff84168160ff0481118215151615613f3157613f3161372e565b029392505050565b600060ff821660ff841680821015613f5357613f5361372e565b90039392505050565b600060ff821660ff84168060ff03821115613f7957613f7961372e565b019392505050565b600060ff821660ff8103613f9757613f9761372e565b60010192915050565b6000815260008251613fb9816001850160208701612fa4565b9190910160010192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613ff990830184612fd0565b9695505050505050565b60006020828403121561401557600080fd5b81516109ae81612f71565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b6005820152815160009061406381600e850160208701612fa4565b91909101600e01939250505056fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d696d6167653a75726c284142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220766e6b4e9d2787ae85457946c05a84c664da34fc1f2bb0c5cc2edf01df2e05de64736f6c634300080e0033

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.