ETH Price: $3,157.17 (-8.29%)
Gas: 9 Gwei

Token

ASCENSION (ASC)
 

Overview

Max Total Supply

999 ASC

Holders

312

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ASC
0x8EcDDA228a2D19B905Aa96d63A956e657d17ad98
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:
ASCENSION

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 12: ASCENSION-NEO.sol
///////////////////////////////////////////////////////////////////////////
//                                                                       //
//▄▄▄█████▓ ██▀███   ██▓ ██▓███   ██▓    ▓█████      ██████  ██▓▒██   ██▒//
//▓  ██▒ ▓▒▓██ ▒ ██▒▓██▒▓██░  ██▒▓██▒    ▓█   ▀    ▒██    ▒ ▓██▒▒▒ █ █ ▒░//
//▒ ▓██░ ▒░▓██ ░▄█ ▒▒██▒▓██░ ██▓▒▒██░    ▒███      ░ ▓██▄   ▒██▒░░  █   ░//
//░ ▓██▓ ░ ▒██▀▀█▄  ░██░▒██▄█▓▒ ▒▒██░    ▒▓█  ▄      ▒   ██▒░██░ ░ █ █ ▒ //
//  ▒██▒ ░ ░██▓ ▒██▒░██░▒██▒ ░  ░░██████▒░▒████▒   ▒██████▒▒░██░▒██▒ ▒██▒//
//  ▒ ░░   ░ ▒▓ ░▒▓░░▓  ▒▓▒░ ░  ░░ ▒░▓  ░░░ ▒░ ░   ▒ ▒▓▒ ▒ ░░▓  ▒▒ ░ ░▓ ░//
//    ░      ░▒ ░ ▒░ ▒ ░░▒ ░     ░ ░ ▒  ░ ░ ░  ░   ░ ░▒  ░ ░ ▒ ░░░   ░▒ ░//
//  ░        ░░   ░  ▒ ░░░         ░ ░      ░      ░  ░  ░   ▒ ░ ░    ░  //
//            ░      ░               ░  ░   ░  ░         ░   ░   ░    ░  //
//                                          SPDX-License-Identifier: MIT //
///////////////////////////////////////////////////////////////////////////

pragma solidity ^0.8.4;

import './Ownable.sol';
import './ERC721A.sol';
import './MerkleProof.sol';

interface IBurnable {
  function isApprovedForAll(address owner, address operator) external view returns(bool);
  function transferFrom(address from, address to, uint256 tokenId) external;
}

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

contract ASCENSION is ERC721A, Ownable {
  using Strings for uint256;

  string baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;

  uint256 public maxSupply = 6666;
  uint256 public mintStartTime;
  uint256 public mintStopTime;

  struct phaseData {
    bytes32 merkleRoot;
    uint256 price;
  }

  struct mintData {
    address minter;
    bool rugburn;
    uint itemsMintedInTX;
  }

  bool public paused = true;
  bool public pausedBurn = true;
  bool public revealed = false;

  //mapping(address => bool) public addressClaimed;
  //mapping(address => bool) public addressClaimedWL;
  mapping(address => uint) public addressClaimedAmt;
  mapping(address => uint) public addressClaimedAmtPublic;

  mapping(address => uint[]) public burnedMetalIDs;
  mapping(address => uint[]) public burnedDroneIDs;

  mapping(uint256 => phaseData) public phaseInfo;
  mapping(uint256 => mintData) public tokenMinter;

  IBurnable public liquidMetals = IBurnable(0xA49F31C7C90137e8d76FCf339E242e97B8f417D9);
  IBurnable public drones = IBurnable(0x4841e01fCC3dBa02b30C56E04589F70aC00C0eF0);
  IRugBurn public rugburn = IRugBurn(0xA17F63Bcd85Fd3B01C5996Da0327f84c6AE86a82);

  // Adding this modifier to a function will ensure the function can only be executed before the mint is started
  modifier beforeSale {
    require(mintStartTime == 0, "Sale has started");
    _;
  }

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721A(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
    ////// PHASE PRICING SETTINGS
    /// @dev Molten holders will be airdropped due to there being <10 tokens
    phaseInfo[1].price = 0.01 ether;  // DIAMOND
    phaseInfo[2].price = 0.025 ether;  // GOLD
    phaseInfo[3].price = 0.035 ether;  // SILVER
    phaseInfo[4].price = 0.055 ether;  // WL
    phaseInfo[5].price = 0.065 ether;  // PUBLIC
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  // external / public
  /// @notice               Burns a Liquid Metal NFT and saves the burned token to the users data
  /// @param _metalTokenID  TokenID for the Liquid Metal
  function burnMetal(uint _metalTokenID) public beforeSale {
    require(liquidMetals.isApprovedForAll(msg.sender, address(this)), "Contract not approved");
    liquidMetals.transferFrom(msg.sender, address(0x000000000000000000000000000000000000dEaD), _metalTokenID);
    burnedMetalIDs[msg.sender].push(_metalTokenID);
  }

  /// @notice               Burns a Drone NFT and saves the burned token to the users data
  /// @param _droneTokenID  TokenID for the Drone
  function burnDrone(uint _droneTokenID) public beforeSale {
    require(drones.isApprovedForAll(msg.sender, address(this)), "Contract not approved");
    drones.transferFrom(msg.sender, address(0x000000000000000000000000000000000000dEaD), _droneTokenID);
    burnedDroneIDs[msg.sender].push(_droneTokenID);
  }

  /// @notice                 Retrieves the current whitelist phase
  function getCurrentPhase() public view returns (uint) {
    uint phase;
    // If the mint hasn't started or the contract is paused it will always return 0
    if (mintStartTime == 0 || paused) return 0;
    if (block.timestamp > mintStartTime + 48 hours) {
      phase = 5;
    } else if (block.timestamp > mintStartTime + 36 hours) {
      phase = 4;
    } else if (block.timestamp > mintStartTime + 24 hours) {
      phase = 3;
    } else if (block.timestamp > mintStartTime + 12 hours) {
      phase = 2;
    } else if (block.timestamp >= mintStartTime) {
      phase = 1;
    } else {
      phase = 0;
    }
    return phase;
  }

  /// @notice                 Gets the phase for the user
  /// @param _address         Address of the user
  /// @param _merkleProof     The users merkle proof
  function getUserPhase(address _address, bytes32[] calldata _merkleProof) public view returns (uint) {
    /// @dev Counts from 4 to 1 (inclusive) in case the user is whitelisted for several phases
    /// @dev The last iteration that returns 'true' needs to be the lowest (cheapest) phase the user is whitelisted for
    /// @dev Its safe to use 'unchecked' as we are iterating within a fixed known range
    uint userPhase;
    unchecked {
      for (uint i = 4; i > 0; --i) {
        bool status = isWhitelisted(_address, _merkleProof, i); 
        if (status) userPhase = i;
      }
    }
    return userPhase;
  }

  /// @notice                 Mint function for whitelisted users
  /// @param _merkleProof     Merkle proof of the caller (empty [] for non-whitelisted)
  /// @param _mintAmount      Amount to be minted
  /// @param _rugburnTrait    Optional parameter to qualify for a rugburn trait
  function mint(bytes32[] calldata _merkleProof, uint _mintAmount, bool _rugburnTrait) external payable {
    require(!paused, "Sale is paused");
    require(tx.origin == msg.sender, "Sender not origin");

    uint supply = totalSupply();
    uint currentPhase = getCurrentPhase();
    uint userPhase;
    uint perWalletLimit = 3;
    uint userClaimedIndex = addressClaimedAmt[msg.sender];

    require(supply + _mintAmount <= maxSupply, "Max supply reached");
    require(msg.value >= _mintAmount * phaseInfo[currentPhase].price, "Incorrect price");

    if (currentPhase < 5) {
      // If the current phase is the whitelist sale
      userPhase = getUserPhase(msg.sender, _merkleProof);
      require(userPhase > 0, "Not whitelisted");
      require(userPhase <= currentPhase, "Phase not started");
      if (_rugburnTrait) {
        require(burnedMetalIDs[msg.sender].length > 0 && rugburn.balanceOf(msg.sender) > 0, "Not eligible for rugburn");
      }
    } else {
      require(_mintAmount <= 5, "TX limit exceeded");
      perWalletLimit = 20;
      userClaimedIndex = addressClaimedAmtPublic[msg.sender];
    }
    require(userClaimedIndex + _mintAmount <= perWalletLimit, "Wallet limit exceeded");

    _safeMint(msg.sender, _mintAmount);
    tokenMinter[supply] = mintData(msg.sender, _rugburnTrait, _mintAmount);
    if (currentPhase < 5) {
      addressClaimedAmt[msg.sender] += _mintAmount;
    } else {
      addressClaimedAmtPublic[msg.sender] += _mintAmount;
    }
  }

  /// @notice               Owner function to reserve tokens
  /// @param _mintAmount    Amount of tokens to mint
  function mintAdmin(uint256 _mintAmount) public onlyOwner {
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "Max supply reached");
    _safeMint(msg.sender, _mintAmount);
  }

  /// @notice               Burn function
  /// @param _tokenId       Token to burn
  function burnToken(uint256 _tokenId) public {
    require(!pausedBurn, "Burn is paused");
    _burn(_tokenId, true);
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  function tokensOfOwner(address owner) external view returns (uint256[] memory) {
      unchecked {
          uint256 tokenIdsIdx;
          address currOwnershipAddr;
          uint256 tokenIdsLength = balanceOf(owner);
          uint256[] memory tokenIds = new uint256[](tokenIdsLength);
          TokenOwnership memory ownership;
          for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
              ownership = _ownerships[i];
              if (ownership.burned) {
                  continue;
              }
              if (ownership.addr != address(0)) {
                  currOwnershipAddr = ownership.addr;
              }
              if (currOwnershipAddr == owner) {
                  tokenIds[tokenIdsIdx++] = i;
              }
          }
          return tokenIds;
      }
  }

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

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    require(paused != _state, "Already paused/unpaused");
    if (_state) {
      mintStopTime = block.timestamp;
    } else {
      mintStartTime += (block.timestamp - mintStopTime);
    }
    paused = _state;
  }

  function pauseBurn(bool _state) external onlyOwner {
    pausedBurn = _state;
  }

  function isWhitelisted(address _user, bytes32[] calldata _merkleProof, uint256 _phase) public view returns (bool) {
    return MerkleProof.verify(_merkleProof, phaseInfo[_phase].merkleRoot, keccak256(abi.encodePacked(_user)));
  }

  function setMerkleRoot(uint256 _phase, bytes32 _merkleRoot) public onlyOwner  {
    require(_phase > 0 && _phase < 5, "Phase should be between 1 and 4");
    phaseInfo[_phase].merkleRoot = _merkleRoot;
  }

  function setPriceInWei(uint256 _phase, uint _priceInWei) public onlyOwner beforeSale {
    require(_phase > 0 && _phase <= 5, "Phase should be between 1 and 5");
    phaseInfo[_phase].price = _priceInWei;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner beforeSale {
    maxSupply = _maxSupply;
  }

  function setMetalAddress(address _contract) public onlyOwner {
    liquidMetals = IBurnable(_contract);
  }

  function setDroneAddress(address _contract) public onlyOwner {
    drones = IBurnable(_contract);
  }

  function setRugburnAddress(address _contract) public onlyOwner {
    rugburn = IRugBurn(_contract);
  }

  function getBurnInfo(address _burner) public view returns (uint[] memory metalsBurned, uint[] memory dronesBurned) {
    uint[] memory metalTokenIDs = burnedMetalIDs[_burner];
    uint[] memory droneTokenIDs = burnedDroneIDs[_burner];
    return (metalTokenIDs, droneTokenIDs);
  }

  function withdraw() public onlyOwner { // functional
    uint256 balance = address(this).balance;
    uint256 dev_share = (balance * 12) / 100;
    payable(0x034Df4dA8802989c07c7Bc8A98338E83e6a1bF4b).transfer(dev_share);
    payable(owner()).transfer(address(this).balance);
  }
}

File 1 of 12: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 3 of 12: 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 4 of 12: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 5 of 12: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721.sol';
import './IERC721Receiver.sol';
import './IERC721Metadata.sol';
import './Address.sol';
import './Context.sol';
import './Strings.sol';
import './ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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 Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].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 {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString())) : '';
    }

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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.isContract() && !_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 && !_ownerships[tokenId].burned;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

            if (safe && to.isContract()) {
                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 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == 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 {}
}

File 6 of 12: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

File 7 of 12: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

File 8 of 12: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

File 9 of 12: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 12: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 11 of 12: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./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 12 of 12: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":[],"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"},{"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":"address","name":"","type":"address"}],"name":"addressClaimedAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimedAmtPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_droneTokenID","type":"uint256"}],"name":"burnDrone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_metalTokenID","type":"uint256"}],"name":"burnMetal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"burnedDroneIDs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"burnedMetalIDs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drones","outputs":[{"internalType":"contract IBurnable","name":"","type":"address"}],"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":"address","name":"_burner","type":"address"}],"name":"getBurnInfo","outputs":[{"internalType":"uint256[]","name":"metalsBurned","type":"uint256[]"},{"internalType":"uint256[]","name":"dronesBurned","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"getUserPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_phase","type":"uint256"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidMetals","outputs":[{"internalType":"contract IBurnable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bool","name":"_rugburnTrait","type":"bool"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStopTime","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":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pauseBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"phaseInfo","outputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rugburn","outputs":[{"internalType":"contract IRugBurn","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setDroneAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phase","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setMetalAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phase","type":"uint256"},{"internalType":"uint256","name":"_priceInWei","type":"uint256"}],"name":"setPriceInWei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setRugburnAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMinter","outputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"bool","name":"rugburn","type":"bool"},{"internalType":"uint256","name":"itemsMintedInTX","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"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"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000327565b50611a0a600c55600f805462ffffff1916610101179055601680546001600160a01b031990811673a49f31c7c90137e8d76fcf339e242e97b8f417d917909155601780548216734841e01fcc3dba02b30c56e04589f70ac00c0ef01790556018805490911673a17f63bcd85fd3b01c5996da0327f84c6ae86a82179055348015620000b257600080fd5b5060405162003b3938038062003b39833981016040819052620000d59162000484565b835184908490620000ee90600290602085019062000327565b5080516200010490600390602084019062000327565b50506000805550620001163362000212565b620001218262000264565b6200012c81620002cc565b505060146020525050662386f26fc100007fb6c61a840592cc84133e4b25bd509abf4659307c57b160799b38490a5aa48f2d556658d15e176280007fa1930aa930426c54c34daad2b9ada7c5d0ef0c96078a3c5bb79f6fa6602c4a7b55667c5850872380007f63d87a887046e0430be80fdeb014107d7198c879cbf2cddf39a6df195c86cb395566c3663566a580007f52102136546d97ed3f65ec1070a32935d3048ea12f310d29c378dc9d6555c0d755600560005266e6ed27d66680007f116126bec5aaa49b347e966c49378cf0c441de9121e306ea3d824584a9615aa35562000590565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002b35760405162461bcd60e51b8152602060048201819052602482015260008051602062003b1983398151915260448201526064015b60405180910390fd5b8051620002c890600990602084019062000327565b5050565b6008546001600160a01b03163314620003175760405162461bcd60e51b8152602060048201819052602482015260008051602062003b198339815191526044820152606401620002aa565b8051620002c890600b9060208401905b82805462000335906200053d565b90600052602060002090601f016020900481019282620003595760008555620003a4565b82601f106200037457805160ff1916838001178555620003a4565b82800160010185558215620003a4579182015b82811115620003a457825182559160200191906001019062000387565b50620003b2929150620003b6565b5090565b5b80821115620003b25760008155600101620003b7565b600082601f830112620003df57600080fd5b81516001600160401b0380821115620003fc57620003fc6200057a565b604051601f8301601f19908116603f011681019082821181831017156200042757620004276200057a565b816040528381526020925086838588010111156200044457600080fd5b600091505b8382101562000468578582018301518183018401529082019062000449565b838211156200047a5760008385830101525b9695505050505050565b600080600080608085870312156200049b57600080fd5b84516001600160401b0380821115620004b357600080fd5b620004c188838901620003cd565b95506020870151915080821115620004d857600080fd5b620004e688838901620003cd565b94506040870151915080821115620004fd57600080fd5b6200050b88838901620003cd565b935060608701519150808211156200052257600080fd5b506200053187828801620003cd565b91505092959194509250565b600181811c908216806200055257607f821691505b602082108114156200057457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61357980620005a06000396000f3fe6080604052600436106103765760003560e01c80637e298249116101d1578063aaf4964011610102578063e2a13ecb116100a0578063ef3786591161006f578063ef37865914610aa4578063f2c4ce1e14610ac4578063f2c926f114610ae4578063f2fde38b14610b0457600080fd5b8063e2a13ecb146109ed578063e492ba9d14610a0d578063e49c633314610a2d578063e985e9c514610a5b57600080fd5b8063c87b56dd116100dc578063c87b56dd14610977578063d536e3b114610997578063d5abeb01146109b7578063da3ef23f146109cd57600080fd5b8063aaf4964014610922578063b88d4fde14610942578063c66828621461096257600080fd5b806395d89b411161016f578063a3a40ea511610149578063a3a40ea5146108ab578063a475b5dd146108c0578063a5cf4084146108d5578063a85417fe1461090257600080fd5b806395d89b4114610856578063a22cb4651461086b578063a371a0621461088b57600080fd5b80638462151c116101ab5780638462151c146107df5780638da5cb5b1461080c578063931e2e491461082a57806395c8b27a1461084057600080fd5b80637e2982491461077f57806381fa80fe1461079f578063844a8fdb146107bf57600080fd5b80633ccfd60b116102ab5780636352211e1161024957806370a082311161022357806370a08231146106bb578063715018a6146106db5780637b47ec1a146106f05780637c57d9471461071057600080fd5b80636352211e1461065b578063677ab70b1461067b5780636f8b44b01461069b57600080fd5b80635283c8c3116102855780635283c8c3146105e257806355f804b31461060257806357cef3db146106225780635c975abb1461064157600080fd5b80633ccfd60b1461058d57806342842e0e146105a257806351830227146105c257600080fd5b806318712c21116103185780631be8db96116102f25780631be8db961461050d57806323b872dd1461052d5780632740997d1461054d57806328c1d4ad1461057a57600080fd5b806318712c21146104845780631a4b0a25146104a45780631add0840146104ed57600080fd5b8063081812fc11610354578063081812fc146103f4578063081c8c441461042c578063095ea7b31461044157806318160ddd1461046157600080fd5b806301ffc9a71461037b57806302329a29146103b057806306fdde03146103d2575b600080fd5b34801561038757600080fd5b5061039b6103963660046130be565b610b24565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103d06103cb366004613084565b610b76565b005b3480156103de57600080fd5b506103e7610c48565b6040516103a7919061333d565b34801561040057600080fd5b5061041461040f366004613140565b610cda565b6040516001600160a01b0390911681526020016103a7565b34801561043857600080fd5b506103e7610d1e565b34801561044d57600080fd5b506103d061045c366004612ffc565b610dac565b34801561046d57600080fd5b50600154600054035b6040519081526020016103a7565b34801561049057600080fd5b506103d061049f366004613172565b610e3a565b3480156104b057600080fd5b506104d86104bf366004613140565b6014602052600090815260409020805460019091015482565b604080519283526020830191909152016103a7565b3480156104f957600080fd5b50610476610508366004612ffc565b610ed2565b34801561051957600080fd5b506103d0610528366004613084565b610f03565b34801561053957600080fd5b506103d0610548366004612e63565b610f47565b34801561055957600080fd5b50610476610568366004612e15565b60116020526000908152604090205481565b6103d0610588366004613026565b610f52565b34801561059957600080fd5b506103d06113ba565b3480156105ae57600080fd5b506103d06105bd366004612e63565b61147c565b3480156105ce57600080fd5b50600f5461039b9062010000900460ff1681565b3480156105ee57600080fd5b50601854610414906001600160a01b031681565b34801561060e57600080fd5b506103d061061d3660046130f8565b611497565b34801561062e57600080fd5b50600f5461039b90610100900460ff1681565b34801561064d57600080fd5b50600f5461039b9060ff1681565b34801561066757600080fd5b50610414610676366004613140565b6114d8565b34801561068757600080fd5b506103d0610696366004613140565b6114ea565b3480156106a757600080fd5b506103d06106b6366004613140565b611580565b3480156106c757600080fd5b506104766106d6366004612e15565b6115cf565b3480156106e757600080fd5b506103d061161d565b3480156106fc57600080fd5b506103d061070b366004613140565b611653565b34801561071c57600080fd5b5061075a61072b366004613140565b601560205260009081526040902080546001909101546001600160a01b03821691600160a01b900460ff169083565b604080516001600160a01b0390941684529115156020840152908201526060016103a7565b34801561078b57600080fd5b506103d061079a366004613172565b6116aa565b3480156107ab57600080fd5b506104766107ba366004612ffc565b611766565b3480156107cb57600080fd5b506103d06107da366004612e15565b611782565b3480156107eb57600080fd5b506107ff6107fa366004612e15565b6117ce565b6040516103a791906132fc565b34801561081857600080fd5b506008546001600160a01b0316610414565b34801561083657600080fd5b50610476600d5481565b34801561084c57600080fd5b50610476600e5481565b34801561086257600080fd5b506103e761191b565b34801561087757600080fd5b506103d0610886366004612fc5565b61192a565b34801561089757600080fd5b5061039b6108a6366004612f6c565b6119c0565b3480156108b757600080fd5b50610476611a56565b3480156108cc57600080fd5b506103d0611b0e565b3480156108e157600080fd5b506104766108f0366004612e15565b60106020526000908152604090205481565b34801561090e57600080fd5b50601754610414906001600160a01b031681565b34801561092e57600080fd5b506103d061093d366004612e15565b611b4b565b34801561094e57600080fd5b506103d061095d366004612e9f565b611b97565b34801561096e57600080fd5b506103e7611be8565b34801561098357600080fd5b506103e7610992366004613140565b611bf5565b3480156109a357600080fd5b506103d06109b2366004612e15565b611d65565b3480156109c357600080fd5b50610476600c5481565b3480156109d957600080fd5b506103d06109e83660046130f8565b611db1565b3480156109f957600080fd5b50601654610414906001600160a01b031681565b348015610a1957600080fd5b506103d0610a28366004613140565b611dee565b348015610a3957600080fd5b50610a4d610a48366004612e15565b611f64565b6040516103a792919061330f565b348015610a6757600080fd5b5061039b610a76366004612e30565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610ab057600080fd5b50610476610abf366004612f1a565b612042565b348015610ad057600080fd5b506103d0610adf3660046130f8565b61207b565b348015610af057600080fd5b506103d0610aff366004613140565b6120b8565b348015610b1057600080fd5b506103d0610b1f366004612e15565b61222e565b60006001600160e01b031982166380ac58cd60e01b1480610b5557506001600160e01b03198216635b5e139f60e01b145b80610b7057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610ba95760405162461bcd60e51b8152600401610ba09061337a565b60405180910390fd5b600f5460ff1615158115151415610c025760405162461bcd60e51b815260206004820152601760248201527f416c7265616479207061757365642f756e7061757365640000000000000000006044820152606401610ba0565b8015610c115742600e55610c35565b600e54610c1e90426133fa565b600d6000828254610c2f91906133af565b90915550505b600f805460ff1916911515919091179055565b606060028054610c579061343d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c839061343d565b8015610cd05780601f10610ca557610100808354040283529160200191610cd0565b820191906000526020600020905b815481529060010190602001808311610cb357829003601f168201915b5050505050905090565b6000610ce5826122c6565b610d02576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610d2b9061343d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d579061343d565b8015610da45780601f10610d7957610100808354040283529160200191610da4565b820191906000526020600020905b815481529060010190602001808311610d8757829003601f168201915b505050505081565b6000610db7826114d8565b9050806001600160a01b0316836001600160a01b03161415610dec5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610e0c5750610e0a8133610a76565b155b15610e2a576040516367d9dca160e11b815260040160405180910390fd5b610e358383836122f1565b505050565b6008546001600160a01b03163314610e645760405162461bcd60e51b8152600401610ba09061337a565b600082118015610e745750600582105b610ec05760405162461bcd60e51b815260206004820152601f60248201527f50686173652073686f756c64206265206265747765656e203120616e642034006044820152606401610ba0565b60009182526014602052604090912055565b60136020528160005260406000208181548110610eee57600080fd5b90600052602060002001600091509150505481565b6008546001600160a01b03163314610f2d5760405162461bcd60e51b8152600401610ba09061337a565b600f80549115156101000261ff0019909216919091179055565b610e3583838361234d565b600f5460ff1615610f965760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b6044820152606401610ba0565b323314610fd95760405162461bcd60e51b815260206004820152601160248201527029b2b73232b9103737ba1037b934b3b4b760791b6044820152606401610ba0565b6000610fe86001546000540390565b90506000610ff4611a56565b33600090815260106020526040812054600c5492935090916003919061101a88876133af565b111561105d5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610ba0565b60008481526014602052604090206001015461107990886133db565b3410156110ba5760405162461bcd60e51b815260206004820152600f60248201526e496e636f727265637420707269636560881b6044820152606401610ba0565b6005841015611244576110ce338a8a612042565b9250600083116111125760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610ba0565b838311156111565760405162461bcd60e51b8152602060048201526011602482015270141a185cd9481b9bdd081cdd185c9d1959607a1b6044820152606401610ba0565b851561123f5733600090815260126020526040902054158015906111f357506018546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156111b957600080fd5b505afa1580156111cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f19190613159565b115b61123f5760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656c696769626c6520666f72207275676275726e00000000000000006044820152606401610ba0565b61129f565b60058711156112895760405162461bcd60e51b81526020600482015260116024820152701516081b1a5b5a5d08195e18d959591959607a1b6044820152606401610ba0565b5050336000908152601160205260409020546014905b816112aa88836133af565b11156112f05760405162461bcd60e51b815260206004820152601560248201527415d85b1b195d081b1a5b5a5d08195e18d959591959605a1b6044820152606401610ba0565b6112fa3388612529565b6040805160608101825233815287151560208083019182528284018b815260008a815260159092529390209151825491511515600160a01b026001600160a81b03199092166001600160a01b0391909116171781559051600190910155600584101561138a57336000908152601060205260408120805489929061137f9084906133af565b909155506113af9050565b33600090815260116020526040812080548992906113a99084906133af565b90915550505b505050505050505050565b6008546001600160a01b031633146113e45760405162461bcd60e51b8152600401610ba09061337a565b47600060646113f483600c6133db565b6113fe91906133c7565b60405190915073034df4da8802989c07c7bc8a98338e83e6a1bf4b9082156108fc029083906000818181858888f19350505050158015611442573d6000803e3d6000fd5b506008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e35573d6000803e3d6000fd5b610e3583838360405180602001604052806000815250611b97565b6008546001600160a01b031633146114c15760405162461bcd60e51b8152600401610ba09061337a565b80516114d4906009906020840190612ca5565b5050565b60006114e382612543565b5192915050565b6008546001600160a01b031633146115145760405162461bcd60e51b8152600401610ba09061337a565b60006115236001546000540390565b600c5490915061153383836133af565b11156115765760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610ba0565b6114d43383612529565b6008546001600160a01b031633146115aa5760405162461bcd60e51b8152600401610ba09061337a565b600d54156115ca5760405162461bcd60e51b8152600401610ba090613350565b600c55565b60006001600160a01b0382166115f8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146116475760405162461bcd60e51b8152600401610ba09061337a565b611651600061265d565b565b600f54610100900460ff161561169c5760405162461bcd60e51b815260206004820152600e60248201526d109d5c9b881a5cc81c185d5cd95960921b6044820152606401610ba0565b6116a78160016126af565b50565b6008546001600160a01b031633146116d45760405162461bcd60e51b8152600401610ba09061337a565b600d54156116f45760405162461bcd60e51b8152600401610ba090613350565b600082118015611705575060058211155b6117515760405162461bcd60e51b815260206004820152601f60248201527f50686173652073686f756c64206265206265747765656e203120616e642035006044820152606401610ba0565b60009182526014602052604090912060010155565b60126020528160005260406000208181548110610eee57600080fd5b6008546001600160a01b031633146117ac5760405162461bcd60e51b8152600401610ba09061337a565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b606060008060006117de856115cf565b90506000816001600160401b038111156117fa576117fa6134e9565b604051908082528060200260200182016040528015611823578160200160208202803683370190505b509050611849604080516060810182526000808252602082018190529181019190915290565b60005b83861461190f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925292506118b257611907565b81516001600160a01b0316156118c757815194505b876001600160a01b0316856001600160a01b0316141561190757808387806001019850815181106118fa576118fa6134d3565b6020026020010181815250505b60010161184c565b50909695505050505050565b606060038054610c579061343d565b6001600160a01b0382163314156119545760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000611a4b848480806020026020016040519081016040528093929190818152602001838360200280828437600092018290525087815260146020908152604091829020549151919450611a3093508b92500160609190911b6bffffffffffffffffffffffff1916815260140190565b60405160208183030381529060405280519060200120612862565b90505b949350505050565b600080600d5460001480611a6c5750600f5460ff165b15611a7957600091505090565b600d54611a89906202a3006133af565b421115611a9857506005919050565b600d54611aa8906201fa406133af565b421115611ab757506004919050565b600d54611ac790620151806133af565b421115611ad657506003919050565b600d54611ae59061a8c06133af565b421115611af457506002919050565b600d544210611b0557506001919050565b5060005b919050565b6008546001600160a01b03163314611b385760405162461bcd60e51b8152600401610ba09061337a565b600f805462ff0000191662010000179055565b6008546001600160a01b03163314611b755760405162461bcd60e51b8152600401610ba09061337a565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b611ba284848461234d565b6001600160a01b0383163b15158015611bc45750611bc284848484612878565b155b15611be2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600a8054610d2b9061343d565b6060611c00826122c6565b611c645760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ba0565b600f5462010000900460ff16611d0657600b8054611c819061343d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cad9061343d565b8015611cfa5780601f10611ccf57610100808354040283529160200191611cfa565b820191906000526020600020905b815481529060010190602001808311611cdd57829003601f168201915b50505050509050919050565b6000611d1061296c565b90506000815111611d305760405180602001604052806000815250611d5e565b80611d3a8461297b565b600a604051602001611d4e939291906131fb565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611d8f5760405162461bcd60e51b8152600401610ba09061337a565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314611ddb5760405162461bcd60e51b8152600401610ba09061337a565b80516114d490600a906020840190612ca5565b600d5415611e0e5760405162461bcd60e51b8152600401610ba090613350565b60165460405163e985e9c560e01b81523360048201523060248201526001600160a01b039091169063e985e9c59060440160206040518083038186803b158015611e5757600080fd5b505afa158015611e6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8f91906130a1565b611ed35760405162461bcd60e51b815260206004820152601560248201527410dbdb9d1c9858dd081b9bdd08185c1c1c9bdd9959605a1b6044820152606401610ba0565b6016546040516323b872dd60e01b815233600482015261dead6024820152604481018390526001600160a01b03909116906323b872dd90606401600060405180830381600087803b158015611f2757600080fd5b505af1158015611f3b573d6000803e3d6000fd5b505033600090815260126020908152604082208054600181018255908352912001929092555050565b6001600160a01b0381166000908152601260209081526040808320805482518185028101850190935280835260609485949093929190830182828015611fc957602002820191906000526020600020905b815481526020019060010190808311611fb5575b505050506001600160a01b0386166000908152601360209081526040808320805482518185028101850190935280835295965092949093509083018282801561203157602002820191906000526020600020905b81548152602001906001019080831161201d575b509599939850929650505050505050565b60008060045b801561207257600061205c878787856119c0565b90508015612068578192505b5060001901612048565b50949350505050565b6008546001600160a01b031633146120a55760405162461bcd60e51b8152600401610ba09061337a565b80516114d490600b906020840190612ca5565b600d54156120d85760405162461bcd60e51b8152600401610ba090613350565b60175460405163e985e9c560e01b81523360048201523060248201526001600160a01b039091169063e985e9c59060440160206040518083038186803b15801561212157600080fd5b505afa158015612135573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061215991906130a1565b61219d5760405162461bcd60e51b815260206004820152601560248201527410dbdb9d1c9858dd081b9bdd08185c1c1c9bdd9959605a1b6044820152606401610ba0565b6017546040516323b872dd60e01b815233600482015261dead6024820152604481018390526001600160a01b03909116906323b872dd90606401600060405180830381600087803b1580156121f157600080fd5b505af1158015612205573d6000803e3d6000fd5b505033600090815260136020908152604082208054600181018255908352912001929092555050565b6008546001600160a01b031633146122585760405162461bcd60e51b8152600401610ba09061337a565b6001600160a01b0381166122bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ba0565b6116a78161265d565b6000805482108015610b70575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061235882612543565b9050836001600160a01b031681600001516001600160a01b03161461238f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806123ad57506123ad8533610a76565b806123c85750336123bd84610cda565b6001600160a01b0316145b9050806123e857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661240f57604051633a954ecd60e21b815260040160405180910390fd5b61241b600084876122f1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166124ef5760005482146124ef57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061352483398151915260405160405180910390a45b5050505050565b6114d4828260405180602001604052806000815250612a78565b60408051606081018252600080825260208201819052918101919091528160005481101561264457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906126425780516001600160a01b0316156125d9579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561263d579392505050565b6125d9565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006126ba83612543565b80519091508215612720576000336001600160a01b03831614806126e357506126e38233610a76565b806126fe5750336126f386610cda565b6001600160a01b0316145b90508061271e57604051632ce44b5f60e11b815260040160405180910390fd5b505b61272c600085836122f1565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661282a57600054821461282a57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020613524833981519152908390a4505060018054810190555050565b60008261286f8584612a85565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906128ad9033908990889088906004016132bf565b602060405180830381600087803b1580156128c757600080fd5b505af19250505080156128f7575060408051601f3d908101601f191682019092526128f4918101906130db565b60015b612952573d808015612925576040519150601f19603f3d011682016040523d82523d6000602084013e61292a565b606091505b50805161294a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4e565b606060098054610c579061343d565b60608161299f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129c957806129b381613478565b91506129c29050600a836133c7565b91506129a3565b6000816001600160401b038111156129e3576129e36134e9565b6040519080825280601f01601f191660200182016040528015612a0d576020820181803683370190505b5090505b8415611a4e57612a226001836133fa565b9150612a2f600a86613493565b612a3a9060306133af565b60f81b818381518110612a4f57612a4f6134d3565b60200101906001600160f81b031916908160001a905350612a71600a866133c7565b9450612a11565b610e358383836001612af9565b600081815b8451811015612af1576000858281518110612aa757612aa76134d3565b60200260200101519050808311612acd5760008381526020829052604090209250612ade565b600081815260208490526040902092505b5080612ae981613478565b915050612a8a565b509392505050565b6000546001600160a01b038516612b2257604051622e076360e81b815260040160405180910390fd5b83612b405760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612bf157506001600160a01b0387163b15155b15612c68575b60405182906001600160a01b03891690600090600080516020613524833981519152908290a4612c306000888480600101955088612878565b612c4d576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612bf7578260005414612c6357600080fd5b612c9c565b5b6040516001830192906001600160a01b03891690600090600080516020613524833981519152908290a480821415612c69575b50600055612522565b828054612cb19061343d565b90600052602060002090601f016020900481019282612cd35760008555612d19565b82601f10612cec57805160ff1916838001178555612d19565b82800160010185558215612d19579182015b82811115612d19578251825591602001919060010190612cfe565b50612d25929150612d29565b5090565b5b80821115612d255760008155600101612d2a565b60006001600160401b0380841115612d5857612d586134e9565b604051601f8501601f19908116603f01168101908282118183101715612d8057612d806134e9565b81604052809350858152868686011115612d9957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b0957600080fd5b60008083601f840112612ddc57600080fd5b5081356001600160401b03811115612df357600080fd5b6020830191508360208260051b8501011115612e0e57600080fd5b9250929050565b600060208284031215612e2757600080fd5b611d5e82612db3565b60008060408385031215612e4357600080fd5b612e4c83612db3565b9150612e5a60208401612db3565b90509250929050565b600080600060608486031215612e7857600080fd5b612e8184612db3565b9250612e8f60208501612db3565b9150604084013590509250925092565b60008060008060808587031215612eb557600080fd5b612ebe85612db3565b9350612ecc60208601612db3565b92506040850135915060608501356001600160401b03811115612eee57600080fd5b8501601f81018713612eff57600080fd5b612f0e87823560208401612d3e565b91505092959194509250565b600080600060408486031215612f2f57600080fd5b612f3884612db3565b925060208401356001600160401b03811115612f5357600080fd5b612f5f86828701612dca565b9497909650939450505050565b60008060008060608587031215612f8257600080fd5b612f8b85612db3565b935060208501356001600160401b03811115612fa657600080fd5b612fb287828801612dca565b9598909750949560400135949350505050565b60008060408385031215612fd857600080fd5b612fe183612db3565b91506020830135612ff1816134ff565b809150509250929050565b6000806040838503121561300f57600080fd5b61301883612db3565b946020939093013593505050565b6000806000806060858703121561303c57600080fd5b84356001600160401b0381111561305257600080fd5b61305e87828801612dca565b909550935050602085013591506040850135613079816134ff565b939692955090935050565b60006020828403121561309657600080fd5b8135611d5e816134ff565b6000602082840312156130b357600080fd5b8151611d5e816134ff565b6000602082840312156130d057600080fd5b8135611d5e8161350d565b6000602082840312156130ed57600080fd5b8151611d5e8161350d565b60006020828403121561310a57600080fd5b81356001600160401b0381111561312057600080fd5b8201601f8101841361313157600080fd5b611a4e84823560208401612d3e565b60006020828403121561315257600080fd5b5035919050565b60006020828403121561316b57600080fd5b5051919050565b6000806040838503121561318557600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b838110156131c4578151875295820195908201906001016131a8565b509495945050505050565b600081518084526131e7816020860160208601613411565b601f01601f19169290920160200192915050565b60008451602061320e8285838a01613411565b8551918401916132218184848a01613411565b8554920191600090600181811c908083168061323e57607f831692505b85831081141561325c57634e487b7160e01b85526022600452602485fd5b8080156132705760018114613281576132ae565b60ff198516885283880195506132ae565b60008b81526020902060005b858110156132a65781548a82015290840190880161328d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132f2908301846131cf565b9695505050505050565b602081526000611d5e6020830184613194565b6040815260006133226040830185613194565b82810360208401526133348185613194565b95945050505050565b602081526000611d5e60208301846131cf565b60208082526010908201526f14d85b19481a185cc81cdd185c9d195960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156133c2576133c26134a7565b500190565b6000826133d6576133d66134bd565b500490565b60008160001904831182151516156133f5576133f56134a7565b500290565b60008282101561340c5761340c6134a7565b500390565b60005b8381101561342c578181015183820152602001613414565b83811115611be25750506000910152565b600181811c9082168061345157607f821691505b6020821081141561347257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561348c5761348c6134a7565b5060010190565b6000826134a2576134a26134bd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146116a757600080fd5b6001600160e01b0319811681146116a757600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a8de74e5f7c28a9517e26ebe0039fec7052733e6ddce5fd0dc97266c924162a664736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000009415343454e53494f4e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034153430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000872657665616c6564000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000668696464656e0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103765760003560e01c80637e298249116101d1578063aaf4964011610102578063e2a13ecb116100a0578063ef3786591161006f578063ef37865914610aa4578063f2c4ce1e14610ac4578063f2c926f114610ae4578063f2fde38b14610b0457600080fd5b8063e2a13ecb146109ed578063e492ba9d14610a0d578063e49c633314610a2d578063e985e9c514610a5b57600080fd5b8063c87b56dd116100dc578063c87b56dd14610977578063d536e3b114610997578063d5abeb01146109b7578063da3ef23f146109cd57600080fd5b8063aaf4964014610922578063b88d4fde14610942578063c66828621461096257600080fd5b806395d89b411161016f578063a3a40ea511610149578063a3a40ea5146108ab578063a475b5dd146108c0578063a5cf4084146108d5578063a85417fe1461090257600080fd5b806395d89b4114610856578063a22cb4651461086b578063a371a0621461088b57600080fd5b80638462151c116101ab5780638462151c146107df5780638da5cb5b1461080c578063931e2e491461082a57806395c8b27a1461084057600080fd5b80637e2982491461077f57806381fa80fe1461079f578063844a8fdb146107bf57600080fd5b80633ccfd60b116102ab5780636352211e1161024957806370a082311161022357806370a08231146106bb578063715018a6146106db5780637b47ec1a146106f05780637c57d9471461071057600080fd5b80636352211e1461065b578063677ab70b1461067b5780636f8b44b01461069b57600080fd5b80635283c8c3116102855780635283c8c3146105e257806355f804b31461060257806357cef3db146106225780635c975abb1461064157600080fd5b80633ccfd60b1461058d57806342842e0e146105a257806351830227146105c257600080fd5b806318712c21116103185780631be8db96116102f25780631be8db961461050d57806323b872dd1461052d5780632740997d1461054d57806328c1d4ad1461057a57600080fd5b806318712c21146104845780631a4b0a25146104a45780631add0840146104ed57600080fd5b8063081812fc11610354578063081812fc146103f4578063081c8c441461042c578063095ea7b31461044157806318160ddd1461046157600080fd5b806301ffc9a71461037b57806302329a29146103b057806306fdde03146103d2575b600080fd5b34801561038757600080fd5b5061039b6103963660046130be565b610b24565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103d06103cb366004613084565b610b76565b005b3480156103de57600080fd5b506103e7610c48565b6040516103a7919061333d565b34801561040057600080fd5b5061041461040f366004613140565b610cda565b6040516001600160a01b0390911681526020016103a7565b34801561043857600080fd5b506103e7610d1e565b34801561044d57600080fd5b506103d061045c366004612ffc565b610dac565b34801561046d57600080fd5b50600154600054035b6040519081526020016103a7565b34801561049057600080fd5b506103d061049f366004613172565b610e3a565b3480156104b057600080fd5b506104d86104bf366004613140565b6014602052600090815260409020805460019091015482565b604080519283526020830191909152016103a7565b3480156104f957600080fd5b50610476610508366004612ffc565b610ed2565b34801561051957600080fd5b506103d0610528366004613084565b610f03565b34801561053957600080fd5b506103d0610548366004612e63565b610f47565b34801561055957600080fd5b50610476610568366004612e15565b60116020526000908152604090205481565b6103d0610588366004613026565b610f52565b34801561059957600080fd5b506103d06113ba565b3480156105ae57600080fd5b506103d06105bd366004612e63565b61147c565b3480156105ce57600080fd5b50600f5461039b9062010000900460ff1681565b3480156105ee57600080fd5b50601854610414906001600160a01b031681565b34801561060e57600080fd5b506103d061061d3660046130f8565b611497565b34801561062e57600080fd5b50600f5461039b90610100900460ff1681565b34801561064d57600080fd5b50600f5461039b9060ff1681565b34801561066757600080fd5b50610414610676366004613140565b6114d8565b34801561068757600080fd5b506103d0610696366004613140565b6114ea565b3480156106a757600080fd5b506103d06106b6366004613140565b611580565b3480156106c757600080fd5b506104766106d6366004612e15565b6115cf565b3480156106e757600080fd5b506103d061161d565b3480156106fc57600080fd5b506103d061070b366004613140565b611653565b34801561071c57600080fd5b5061075a61072b366004613140565b601560205260009081526040902080546001909101546001600160a01b03821691600160a01b900460ff169083565b604080516001600160a01b0390941684529115156020840152908201526060016103a7565b34801561078b57600080fd5b506103d061079a366004613172565b6116aa565b3480156107ab57600080fd5b506104766107ba366004612ffc565b611766565b3480156107cb57600080fd5b506103d06107da366004612e15565b611782565b3480156107eb57600080fd5b506107ff6107fa366004612e15565b6117ce565b6040516103a791906132fc565b34801561081857600080fd5b506008546001600160a01b0316610414565b34801561083657600080fd5b50610476600d5481565b34801561084c57600080fd5b50610476600e5481565b34801561086257600080fd5b506103e761191b565b34801561087757600080fd5b506103d0610886366004612fc5565b61192a565b34801561089757600080fd5b5061039b6108a6366004612f6c565b6119c0565b3480156108b757600080fd5b50610476611a56565b3480156108cc57600080fd5b506103d0611b0e565b3480156108e157600080fd5b506104766108f0366004612e15565b60106020526000908152604090205481565b34801561090e57600080fd5b50601754610414906001600160a01b031681565b34801561092e57600080fd5b506103d061093d366004612e15565b611b4b565b34801561094e57600080fd5b506103d061095d366004612e9f565b611b97565b34801561096e57600080fd5b506103e7611be8565b34801561098357600080fd5b506103e7610992366004613140565b611bf5565b3480156109a357600080fd5b506103d06109b2366004612e15565b611d65565b3480156109c357600080fd5b50610476600c5481565b3480156109d957600080fd5b506103d06109e83660046130f8565b611db1565b3480156109f957600080fd5b50601654610414906001600160a01b031681565b348015610a1957600080fd5b506103d0610a28366004613140565b611dee565b348015610a3957600080fd5b50610a4d610a48366004612e15565b611f64565b6040516103a792919061330f565b348015610a6757600080fd5b5061039b610a76366004612e30565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610ab057600080fd5b50610476610abf366004612f1a565b612042565b348015610ad057600080fd5b506103d0610adf3660046130f8565b61207b565b348015610af057600080fd5b506103d0610aff366004613140565b6120b8565b348015610b1057600080fd5b506103d0610b1f366004612e15565b61222e565b60006001600160e01b031982166380ac58cd60e01b1480610b5557506001600160e01b03198216635b5e139f60e01b145b80610b7057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610ba95760405162461bcd60e51b8152600401610ba09061337a565b60405180910390fd5b600f5460ff1615158115151415610c025760405162461bcd60e51b815260206004820152601760248201527f416c7265616479207061757365642f756e7061757365640000000000000000006044820152606401610ba0565b8015610c115742600e55610c35565b600e54610c1e90426133fa565b600d6000828254610c2f91906133af565b90915550505b600f805460ff1916911515919091179055565b606060028054610c579061343d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c839061343d565b8015610cd05780601f10610ca557610100808354040283529160200191610cd0565b820191906000526020600020905b815481529060010190602001808311610cb357829003601f168201915b5050505050905090565b6000610ce5826122c6565b610d02576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610d2b9061343d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d579061343d565b8015610da45780601f10610d7957610100808354040283529160200191610da4565b820191906000526020600020905b815481529060010190602001808311610d8757829003601f168201915b505050505081565b6000610db7826114d8565b9050806001600160a01b0316836001600160a01b03161415610dec5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610e0c5750610e0a8133610a76565b155b15610e2a576040516367d9dca160e11b815260040160405180910390fd5b610e358383836122f1565b505050565b6008546001600160a01b03163314610e645760405162461bcd60e51b8152600401610ba09061337a565b600082118015610e745750600582105b610ec05760405162461bcd60e51b815260206004820152601f60248201527f50686173652073686f756c64206265206265747765656e203120616e642034006044820152606401610ba0565b60009182526014602052604090912055565b60136020528160005260406000208181548110610eee57600080fd5b90600052602060002001600091509150505481565b6008546001600160a01b03163314610f2d5760405162461bcd60e51b8152600401610ba09061337a565b600f80549115156101000261ff0019909216919091179055565b610e3583838361234d565b600f5460ff1615610f965760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b6044820152606401610ba0565b323314610fd95760405162461bcd60e51b815260206004820152601160248201527029b2b73232b9103737ba1037b934b3b4b760791b6044820152606401610ba0565b6000610fe86001546000540390565b90506000610ff4611a56565b33600090815260106020526040812054600c5492935090916003919061101a88876133af565b111561105d5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610ba0565b60008481526014602052604090206001015461107990886133db565b3410156110ba5760405162461bcd60e51b815260206004820152600f60248201526e496e636f727265637420707269636560881b6044820152606401610ba0565b6005841015611244576110ce338a8a612042565b9250600083116111125760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610ba0565b838311156111565760405162461bcd60e51b8152602060048201526011602482015270141a185cd9481b9bdd081cdd185c9d1959607a1b6044820152606401610ba0565b851561123f5733600090815260126020526040902054158015906111f357506018546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156111b957600080fd5b505afa1580156111cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f19190613159565b115b61123f5760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656c696769626c6520666f72207275676275726e00000000000000006044820152606401610ba0565b61129f565b60058711156112895760405162461bcd60e51b81526020600482015260116024820152701516081b1a5b5a5d08195e18d959591959607a1b6044820152606401610ba0565b5050336000908152601160205260409020546014905b816112aa88836133af565b11156112f05760405162461bcd60e51b815260206004820152601560248201527415d85b1b195d081b1a5b5a5d08195e18d959591959605a1b6044820152606401610ba0565b6112fa3388612529565b6040805160608101825233815287151560208083019182528284018b815260008a815260159092529390209151825491511515600160a01b026001600160a81b03199092166001600160a01b0391909116171781559051600190910155600584101561138a57336000908152601060205260408120805489929061137f9084906133af565b909155506113af9050565b33600090815260116020526040812080548992906113a99084906133af565b90915550505b505050505050505050565b6008546001600160a01b031633146113e45760405162461bcd60e51b8152600401610ba09061337a565b47600060646113f483600c6133db565b6113fe91906133c7565b60405190915073034df4da8802989c07c7bc8a98338e83e6a1bf4b9082156108fc029083906000818181858888f19350505050158015611442573d6000803e3d6000fd5b506008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e35573d6000803e3d6000fd5b610e3583838360405180602001604052806000815250611b97565b6008546001600160a01b031633146114c15760405162461bcd60e51b8152600401610ba09061337a565b80516114d4906009906020840190612ca5565b5050565b60006114e382612543565b5192915050565b6008546001600160a01b031633146115145760405162461bcd60e51b8152600401610ba09061337a565b60006115236001546000540390565b600c5490915061153383836133af565b11156115765760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610ba0565b6114d43383612529565b6008546001600160a01b031633146115aa5760405162461bcd60e51b8152600401610ba09061337a565b600d54156115ca5760405162461bcd60e51b8152600401610ba090613350565b600c55565b60006001600160a01b0382166115f8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146116475760405162461bcd60e51b8152600401610ba09061337a565b611651600061265d565b565b600f54610100900460ff161561169c5760405162461bcd60e51b815260206004820152600e60248201526d109d5c9b881a5cc81c185d5cd95960921b6044820152606401610ba0565b6116a78160016126af565b50565b6008546001600160a01b031633146116d45760405162461bcd60e51b8152600401610ba09061337a565b600d54156116f45760405162461bcd60e51b8152600401610ba090613350565b600082118015611705575060058211155b6117515760405162461bcd60e51b815260206004820152601f60248201527f50686173652073686f756c64206265206265747765656e203120616e642035006044820152606401610ba0565b60009182526014602052604090912060010155565b60126020528160005260406000208181548110610eee57600080fd5b6008546001600160a01b031633146117ac5760405162461bcd60e51b8152600401610ba09061337a565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b606060008060006117de856115cf565b90506000816001600160401b038111156117fa576117fa6134e9565b604051908082528060200260200182016040528015611823578160200160208202803683370190505b509050611849604080516060810182526000808252602082018190529181019190915290565b60005b83861461190f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925292506118b257611907565b81516001600160a01b0316156118c757815194505b876001600160a01b0316856001600160a01b0316141561190757808387806001019850815181106118fa576118fa6134d3565b6020026020010181815250505b60010161184c565b50909695505050505050565b606060038054610c579061343d565b6001600160a01b0382163314156119545760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000611a4b848480806020026020016040519081016040528093929190818152602001838360200280828437600092018290525087815260146020908152604091829020549151919450611a3093508b92500160609190911b6bffffffffffffffffffffffff1916815260140190565b60405160208183030381529060405280519060200120612862565b90505b949350505050565b600080600d5460001480611a6c5750600f5460ff165b15611a7957600091505090565b600d54611a89906202a3006133af565b421115611a9857506005919050565b600d54611aa8906201fa406133af565b421115611ab757506004919050565b600d54611ac790620151806133af565b421115611ad657506003919050565b600d54611ae59061a8c06133af565b421115611af457506002919050565b600d544210611b0557506001919050565b5060005b919050565b6008546001600160a01b03163314611b385760405162461bcd60e51b8152600401610ba09061337a565b600f805462ff0000191662010000179055565b6008546001600160a01b03163314611b755760405162461bcd60e51b8152600401610ba09061337a565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b611ba284848461234d565b6001600160a01b0383163b15158015611bc45750611bc284848484612878565b155b15611be2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600a8054610d2b9061343d565b6060611c00826122c6565b611c645760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ba0565b600f5462010000900460ff16611d0657600b8054611c819061343d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cad9061343d565b8015611cfa5780601f10611ccf57610100808354040283529160200191611cfa565b820191906000526020600020905b815481529060010190602001808311611cdd57829003601f168201915b50505050509050919050565b6000611d1061296c565b90506000815111611d305760405180602001604052806000815250611d5e565b80611d3a8461297b565b600a604051602001611d4e939291906131fb565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611d8f5760405162461bcd60e51b8152600401610ba09061337a565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314611ddb5760405162461bcd60e51b8152600401610ba09061337a565b80516114d490600a906020840190612ca5565b600d5415611e0e5760405162461bcd60e51b8152600401610ba090613350565b60165460405163e985e9c560e01b81523360048201523060248201526001600160a01b039091169063e985e9c59060440160206040518083038186803b158015611e5757600080fd5b505afa158015611e6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8f91906130a1565b611ed35760405162461bcd60e51b815260206004820152601560248201527410dbdb9d1c9858dd081b9bdd08185c1c1c9bdd9959605a1b6044820152606401610ba0565b6016546040516323b872dd60e01b815233600482015261dead6024820152604481018390526001600160a01b03909116906323b872dd90606401600060405180830381600087803b158015611f2757600080fd5b505af1158015611f3b573d6000803e3d6000fd5b505033600090815260126020908152604082208054600181018255908352912001929092555050565b6001600160a01b0381166000908152601260209081526040808320805482518185028101850190935280835260609485949093929190830182828015611fc957602002820191906000526020600020905b815481526020019060010190808311611fb5575b505050506001600160a01b0386166000908152601360209081526040808320805482518185028101850190935280835295965092949093509083018282801561203157602002820191906000526020600020905b81548152602001906001019080831161201d575b509599939850929650505050505050565b60008060045b801561207257600061205c878787856119c0565b90508015612068578192505b5060001901612048565b50949350505050565b6008546001600160a01b031633146120a55760405162461bcd60e51b8152600401610ba09061337a565b80516114d490600b906020840190612ca5565b600d54156120d85760405162461bcd60e51b8152600401610ba090613350565b60175460405163e985e9c560e01b81523360048201523060248201526001600160a01b039091169063e985e9c59060440160206040518083038186803b15801561212157600080fd5b505afa158015612135573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061215991906130a1565b61219d5760405162461bcd60e51b815260206004820152601560248201527410dbdb9d1c9858dd081b9bdd08185c1c1c9bdd9959605a1b6044820152606401610ba0565b6017546040516323b872dd60e01b815233600482015261dead6024820152604481018390526001600160a01b03909116906323b872dd90606401600060405180830381600087803b1580156121f157600080fd5b505af1158015612205573d6000803e3d6000fd5b505033600090815260136020908152604082208054600181018255908352912001929092555050565b6008546001600160a01b031633146122585760405162461bcd60e51b8152600401610ba09061337a565b6001600160a01b0381166122bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ba0565b6116a78161265d565b6000805482108015610b70575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061235882612543565b9050836001600160a01b031681600001516001600160a01b03161461238f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806123ad57506123ad8533610a76565b806123c85750336123bd84610cda565b6001600160a01b0316145b9050806123e857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661240f57604051633a954ecd60e21b815260040160405180910390fd5b61241b600084876122f1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166124ef5760005482146124ef57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061352483398151915260405160405180910390a45b5050505050565b6114d4828260405180602001604052806000815250612a78565b60408051606081018252600080825260208201819052918101919091528160005481101561264457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906126425780516001600160a01b0316156125d9579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561263d579392505050565b6125d9565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006126ba83612543565b80519091508215612720576000336001600160a01b03831614806126e357506126e38233610a76565b806126fe5750336126f386610cda565b6001600160a01b0316145b90508061271e57604051632ce44b5f60e11b815260040160405180910390fd5b505b61272c600085836122f1565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661282a57600054821461282a57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020613524833981519152908390a4505060018054810190555050565b60008261286f8584612a85565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906128ad9033908990889088906004016132bf565b602060405180830381600087803b1580156128c757600080fd5b505af19250505080156128f7575060408051601f3d908101601f191682019092526128f4918101906130db565b60015b612952573d808015612925576040519150601f19603f3d011682016040523d82523d6000602084013e61292a565b606091505b50805161294a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4e565b606060098054610c579061343d565b60608161299f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129c957806129b381613478565b91506129c29050600a836133c7565b91506129a3565b6000816001600160401b038111156129e3576129e36134e9565b6040519080825280601f01601f191660200182016040528015612a0d576020820181803683370190505b5090505b8415611a4e57612a226001836133fa565b9150612a2f600a86613493565b612a3a9060306133af565b60f81b818381518110612a4f57612a4f6134d3565b60200101906001600160f81b031916908160001a905350612a71600a866133c7565b9450612a11565b610e358383836001612af9565b600081815b8451811015612af1576000858281518110612aa757612aa76134d3565b60200260200101519050808311612acd5760008381526020829052604090209250612ade565b600081815260208490526040902092505b5080612ae981613478565b915050612a8a565b509392505050565b6000546001600160a01b038516612b2257604051622e076360e81b815260040160405180910390fd5b83612b405760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612bf157506001600160a01b0387163b15155b15612c68575b60405182906001600160a01b03891690600090600080516020613524833981519152908290a4612c306000888480600101955088612878565b612c4d576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612bf7578260005414612c6357600080fd5b612c9c565b5b6040516001830192906001600160a01b03891690600090600080516020613524833981519152908290a480821415612c69575b50600055612522565b828054612cb19061343d565b90600052602060002090601f016020900481019282612cd35760008555612d19565b82601f10612cec57805160ff1916838001178555612d19565b82800160010185558215612d19579182015b82811115612d19578251825591602001919060010190612cfe565b50612d25929150612d29565b5090565b5b80821115612d255760008155600101612d2a565b60006001600160401b0380841115612d5857612d586134e9565b604051601f8501601f19908116603f01168101908282118183101715612d8057612d806134e9565b81604052809350858152868686011115612d9957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b0957600080fd5b60008083601f840112612ddc57600080fd5b5081356001600160401b03811115612df357600080fd5b6020830191508360208260051b8501011115612e0e57600080fd5b9250929050565b600060208284031215612e2757600080fd5b611d5e82612db3565b60008060408385031215612e4357600080fd5b612e4c83612db3565b9150612e5a60208401612db3565b90509250929050565b600080600060608486031215612e7857600080fd5b612e8184612db3565b9250612e8f60208501612db3565b9150604084013590509250925092565b60008060008060808587031215612eb557600080fd5b612ebe85612db3565b9350612ecc60208601612db3565b92506040850135915060608501356001600160401b03811115612eee57600080fd5b8501601f81018713612eff57600080fd5b612f0e87823560208401612d3e565b91505092959194509250565b600080600060408486031215612f2f57600080fd5b612f3884612db3565b925060208401356001600160401b03811115612f5357600080fd5b612f5f86828701612dca565b9497909650939450505050565b60008060008060608587031215612f8257600080fd5b612f8b85612db3565b935060208501356001600160401b03811115612fa657600080fd5b612fb287828801612dca565b9598909750949560400135949350505050565b60008060408385031215612fd857600080fd5b612fe183612db3565b91506020830135612ff1816134ff565b809150509250929050565b6000806040838503121561300f57600080fd5b61301883612db3565b946020939093013593505050565b6000806000806060858703121561303c57600080fd5b84356001600160401b0381111561305257600080fd5b61305e87828801612dca565b909550935050602085013591506040850135613079816134ff565b939692955090935050565b60006020828403121561309657600080fd5b8135611d5e816134ff565b6000602082840312156130b357600080fd5b8151611d5e816134ff565b6000602082840312156130d057600080fd5b8135611d5e8161350d565b6000602082840312156130ed57600080fd5b8151611d5e8161350d565b60006020828403121561310a57600080fd5b81356001600160401b0381111561312057600080fd5b8201601f8101841361313157600080fd5b611a4e84823560208401612d3e565b60006020828403121561315257600080fd5b5035919050565b60006020828403121561316b57600080fd5b5051919050565b6000806040838503121561318557600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b838110156131c4578151875295820195908201906001016131a8565b509495945050505050565b600081518084526131e7816020860160208601613411565b601f01601f19169290920160200192915050565b60008451602061320e8285838a01613411565b8551918401916132218184848a01613411565b8554920191600090600181811c908083168061323e57607f831692505b85831081141561325c57634e487b7160e01b85526022600452602485fd5b8080156132705760018114613281576132ae565b60ff198516885283880195506132ae565b60008b81526020902060005b858110156132a65781548a82015290840190880161328d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132f2908301846131cf565b9695505050505050565b602081526000611d5e6020830184613194565b6040815260006133226040830185613194565b82810360208401526133348185613194565b95945050505050565b602081526000611d5e60208301846131cf565b60208082526010908201526f14d85b19481a185cc81cdd185c9d195960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156133c2576133c26134a7565b500190565b6000826133d6576133d66134bd565b500490565b60008160001904831182151516156133f5576133f56134a7565b500290565b60008282101561340c5761340c6134a7565b500390565b60005b8381101561342c578181015183820152602001613414565b83811115611be25750506000910152565b600181811c9082168061345157607f821691505b6020821081141561347257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561348c5761348c6134a7565b5060010190565b6000826134a2576134a26134bd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146116a757600080fd5b6001600160e01b0319811681146116a757600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a8de74e5f7c28a9517e26ebe0039fec7052733e6ddce5fd0dc97266c924162a664736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000009415343454e53494f4e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034153430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000872657665616c6564000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000668696464656e0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): ASCENSION
Arg [1] : _symbol (string): ASC
Arg [2] : _initBaseURI (string): revealed
Arg [3] : _initNotRevealedUri (string): hidden

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 415343454e53494f4e0000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4153430000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 72657665616c6564000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [11] : 68696464656e0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

2092:10878:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4437:305:4;;;;;;;;;;-1:-1:-1;4437:305:4;;;;;:::i;:::-;;:::i;:::-;;;12432:14:12;;12425:22;12407:41;;12395:2;12380:18;4437:305:4;;;;;;;;10914:269:0;;;;;;;;;;-1:-1:-1;10914:269:0;;;;;:::i;:::-;;:::i;:::-;;7550:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9053:204::-;;;;;;;;;;-1:-1:-1;9053:204:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9945:32:12;;;9927:51;;9915:2;9900:18;9053:204:4;9781:203:12;2229:28:0;;;;;;;;;;;;;:::i;8616:371:4:-;;;;;;;;;;-1:-1:-1;8616:371:4;;;;;:::i;:::-;;:::i;3686:303::-;;;;;;;;;;-1:-1:-1;3940:12:4;;3730:7;3924:13;:28;3686:303;;;19942:25:12;;;19930:2;19915:18;3686:303:4;19796:177:12;11516:208:0;;;;;;;;;;-1:-1:-1;11516:208:0;;;;;:::i;:::-;;:::i;2967:46::-;;;;;;;;;;-1:-1:-1;2967:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;12633:25:12;;;12689:2;12674:18;;12667:34;;;;12606:18;2967:46:0;12459:248:12;2912:48:0;;;;;;;;;;-1:-1:-1;2912:48:0;;;;;:::i;:::-;;:::i;11189:83::-;;;;;;;;;;-1:-1:-1;11189:83:0;;;;;:::i;:::-;;:::i;9918:170:4:-;;;;;;;;;;-1:-1:-1;9918:170:4;;;;;:::i;:::-;;:::i;2797:55:0:-;;;;;;;;;;-1:-1:-1;2797:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;7063:1518;;;;;;:::i;:::-;;:::i;12684:283::-;;;;;;;;;;;;;:::i;10159:185:4:-;;;;;;;;;;-1:-1:-1;10159:185:4;;;;;:::i;:::-;;:::i;2600:28:0:-;;;;;;;;;;-1:-1:-1;2600:28:0;;;;;;;;;;;3246:78;;;;;;;;;;-1:-1:-1;3246:78:0;;;;-1:-1:-1;;;;;3246:78:0;;;10554:98;;;;;;;;;;-1:-1:-1;10554:98:0;;;;;:::i;:::-;;:::i;2566:29::-;;;;;;;;;;-1:-1:-1;2566:29:0;;;;;;;;;;;2536:25;;;;;;;;;;-1:-1:-1;2536:25:0;;;;;;;;7358:125:4;;;;;;;;;;-1:-1:-1;7358:125:4;;;;;:::i;:::-;;:::i;8703:212:0:-;;;;;;;;;;-1:-1:-1;8703:212:0;;;;;:::i;:::-;;:::i;11947:105::-;;;;;;;;;;-1:-1:-1;11947:105:0;;;;;:::i;:::-;;:::i;4806:206:4:-;;;;;;;;;;-1:-1:-1;4806:206:4;;;;;:::i;:::-;;:::i;1661:101:10:-;;;;;;;;;;;;;:::i;9007:123:0:-;;;;;;;;;;-1:-1:-1;9007:123:0;;;;;:::i;:::-;;:::i;3018:47::-;;;;;;;;;;-1:-1:-1;3018:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3018:47:0;;;-1:-1:-1;;;3018:47:0;;;;;;;;;;;-1:-1:-1;;;;;11385:32:12;;;11367:51;;11461:14;;11454:22;11449:2;11434:18;;11427:50;11493:18;;;11486:34;11355:2;11340:18;3018:47:0;11171:355:12;11730:211:0;;;;;;;;;;-1:-1:-1;11730:211:0;;;;;:::i;:::-;;:::i;2859:48::-;;;;;;;;;;-1:-1:-1;2859:48:0;;;;;:::i;:::-;;:::i;12173:103::-;;;;;;;;;;-1:-1:-1;12173:103:0;;;;;:::i;:::-;;:::i;9639:840::-;;;;;;;;;;-1:-1:-1;9639:840:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1029:85:10:-;;;;;;;;;;-1:-1:-1;1101:6:10;;-1:-1:-1;;;;;1101:6:10;1029:85;;2300:28:0;;;;;;;;;;;;;;;;2333:27;;;;;;;;;;;;;;;;7719:104:4;;;;;;;;;;;;;:::i;9329:287::-;;;;;;;;;;-1:-1:-1;9329:287:4;;;;;:::i;:::-;;:::i;11278:232:0:-;;;;;;;;;;-1:-1:-1;11278:232:0;;;;;:::i;:::-;;:::i;5318:652::-;;;;;;;;;;;;;:::i;10485:63::-;;;;;;;;;;;;;:::i;2743:49::-;;;;;;;;;;-1:-1:-1;2743:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;3162:79;;;;;;;;;;-1:-1:-1;3162:79:0;;;;-1:-1:-1;;;;;3162:79:0;;;12282:105;;;;;;;;;;-1:-1:-1;12282:105:0;;;;;:::i;:::-;;:::i;10415:369:4:-;;;;;;;;;;-1:-1:-1;10415:369:4;;;;;:::i;:::-;;:::i;2187:37:0:-;;;;;;;;;;;;;:::i;9136:497::-;;;;;;;;;;-1:-1:-1;9136:497:0;;;;;:::i;:::-;;:::i;12058:109::-;;;;;;;;;;-1:-1:-1;12058:109:0;;;;;:::i;:::-;;:::i;2264:31::-;;;;;;;;;;;;;;;;10786:122;;;;;;;;;;-1:-1:-1;10786:122:0;;;;;:::i;:::-;;:::i;3072:85::-;;;;;;;;;;-1:-1:-1;3072:85:0;;;;-1:-1:-1;;;;;3072:85:0;;;4456:325;;;;;;;;;;-1:-1:-1;4456:325:0;;;;;:::i;:::-;;:::i;12393:285::-;;;;;;;;;;-1:-1:-1;12393:285:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;9687:164:4:-;;;;;;;;;;-1:-1:-1;9687:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;9808:25:4;;;9784:4;9808:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9687:164;6140:629:0;;;;;;;;;;-1:-1:-1;6140:629:0;;;;;:::i;:::-;;:::i;10660:120::-;;;;;;;;;;-1:-1:-1;10660:120:0;;;;;:::i;:::-;;:::i;4930:313::-;;;;;;;;;;-1:-1:-1;4930:313:0;;;;;:::i;:::-;;:::i;1911:198:10:-;;;;;;;;;;-1:-1:-1;1911:198:10;;;;;:::i;:::-;;:::i;4437:305:4:-;4539:4;-1:-1:-1;;;;;;4576:40:4;;-1:-1:-1;;;4576:40:4;;:105;;-1:-1:-1;;;;;;;4633:48:4;;-1:-1:-1;;;4633:48:4;4576:105;:158;;;-1:-1:-1;;;;;;;;;;937:40:3;;;4698:36:4;4556:178;4437:305;-1:-1:-1;;4437:305:4:o;10914:269:0:-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;;;;;;;;;10974:6:0::1;::::0;::::1;;:16;;::::0;::::1;;;;10966:52;;;::::0;-1:-1:-1;;;10966:52:0;;17829:2:12;10966:52:0::1;::::0;::::1;17811:21:12::0;17868:2;17848:18;;;17841:30;17907:25;17887:18;;;17880:53;17950:18;;10966:52:0::1;17627:347:12::0;10966:52:0::1;11029:6;11025:131;;;11061:15;11046:12;:30:::0;11025:131:::1;;;11135:12;::::0;11117:30:::1;::::0;:15:::1;:30;:::i;:::-;11099:13;;:49;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;11025:131:0::1;11162:6;:15:::0;;-1:-1:-1;;11162:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;10914:269::o;7550:100:4:-;7604:13;7637:5;7630:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7550:100;:::o;9053:204::-;9121:7;9146:16;9154:7;9146;:16::i;:::-;9141:64;;9171:34;;-1:-1:-1;;;9171:34:4;;;;;;;;;;;9141:64;-1:-1:-1;9225:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;9225:24:4;;9053:204::o;2229:28:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8616:371:4:-;8689:13;8705:24;8721:7;8705:15;:24::i;:::-;8689:40;;8750:5;-1:-1:-1;;;;;8744:11:4;:2;-1:-1:-1;;;;;8744:11:4;;8740:48;;;8764:24;;-1:-1:-1;;;8764:24:4;;;;;;;;;;;8740:48;719:10:2;-1:-1:-1;;;;;8805:21:4;;;;;;:63;;-1:-1:-1;8831:37:4;8848:5;719:10:2;9687:164:4;:::i;8831:37::-;8830:38;8805:63;8801:138;;;8892:35;;-1:-1:-1;;;8892:35:4;;;;;;;;;;;8801:138;8951:28;8960:2;8964:7;8973:5;8951:8;:28::i;:::-;8678:309;8616:371;;:::o;11516:208:0:-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;11618:1:0::1;11609:6;:10;:24;;;;;11632:1;11623:6;:10;11609:24;11601:68;;;::::0;-1:-1:-1;;;11601:68:0;;15041:2:12;11601:68:0::1;::::0;::::1;15023:21:12::0;15080:2;15060:18;;;15053:30;15119:33;15099:18;;;15092:61;15170:18;;11601:68:0::1;14839:355:12::0;11601:68:0::1;11676:17;::::0;;;:9:::1;:17;::::0;;;;;:42;11516:208::o;2912:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11189:83::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;11247:10:0::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;11247:19:0;;::::1;::::0;;;::::1;::::0;;11189:83::o;9918:170:4:-;10052:28;10062:4;10068:2;10072:7;10052:9;:28::i;7063:1518:0:-;7181:6;;;;7180:7;7172:34;;;;-1:-1:-1;;;7172:34:0;;19655:2:12;7172:34:0;;;19637:21:12;19694:2;19674:18;;;19667:30;-1:-1:-1;;;19713:18:12;;;19706:44;19767:18;;7172:34:0;19453:338:12;7172:34:0;7221:9;7234:10;7221:23;7213:53;;;;-1:-1:-1;;;7213:53:0;;15754:2:12;7213:53:0;;;15736:21:12;15793:2;15773:18;;;15766:30;-1:-1:-1;;;15812:18:12;;;15805:47;15869:18;;7213:53:0;15552:341:12;7213:53:0;7275:11;7289:13;3940:12:4;;3730:7;3924:13;:28;;3686:303;7289:13:0;7275:27;;7309:17;7329;:15;:17::i;:::-;7446:10;7353:14;7428:29;;;:17;:29;;;;;;7498:9;;7309:37;;-1:-1:-1;7353:14:0;;7396:1;;7428:29;7474:20;7483:11;7474:6;:20;:::i;:::-;:33;;7466:64;;;;-1:-1:-1;;;7466:64:0;;19308:2:12;7466:64:0;;;19290:21:12;19347:2;19327:18;;;19320:30;-1:-1:-1;;;19366:18:12;;;19359:48;19424:18;;7466:64:0;19106:342:12;7466:64:0;7572:23;;;;:9;:23;;;;;:29;;;7558:43;;:11;:43;:::i;:::-;7545:9;:56;;7537:84;;;;-1:-1:-1;;;7537:84:0;;16100:2:12;7537:84:0;;;16082:21:12;16139:2;16119:18;;;16112:30;-1:-1:-1;;;16158:18:12;;;16151:45;16213:18;;7537:84:0;15898:339:12;7537:84:0;7649:1;7634:12;:16;7630:575;;;7726:38;7739:10;7751:12;;7726;:38::i;:::-;7714:50;;7793:1;7781:9;:13;7773:41;;;;-1:-1:-1;;;7773:41:0;;17140:2:12;7773:41:0;;;17122:21:12;17179:2;17159:18;;;17152:30;-1:-1:-1;;;17198:18:12;;;17191:45;17253:18;;7773:41:0;16938:339:12;7773:41:0;7844:12;7831:9;:25;;7823:55;;;;-1:-1:-1;;;7823:55:0;;13585:2:12;7823:55:0;;;13567:21:12;13624:2;13604:18;;;13597:30;-1:-1:-1;;;13643:18:12;;;13636:47;13700:18;;7823:55:0;13383:341:12;7823:55:0;7891:13;7887:151;;;7940:10;7961:1;7925:26;;;:14;:26;;;;;:33;:37;;;;:74;;-1:-1:-1;7966:7:0;;:29;;-1:-1:-1;;;7966:29:0;;7984:10;7966:29;;;9927:51:12;7998:1:0;;-1:-1:-1;;;;;7966:7:0;;:17;;9900:18:12;;7966:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;7925:74;7917:111;;;;-1:-1:-1;;;7917:111:0;;15401:2:12;7917:111:0;;;15383:21:12;15440:2;15420:18;;;15413:30;15479:26;15459:18;;;15452:54;15523:18;;7917:111:0;15199:348:12;7917:111:0;7630:575;;;8083:1;8068:11;:16;;8060:46;;;;-1:-1:-1;;;8060:46:0;;16794:2:12;8060:46:0;;;16776:21:12;16833:2;16813:18;;;16806:30;-1:-1:-1;;;16852:18:12;;;16845:47;16909:18;;8060:46:0;16592:341:12;8060:46:0;-1:-1:-1;;8186:10:0;8162:35;;;;:23;:35;;;;;;8132:2;;7630:575;8253:14;8219:30;8238:11;8219:16;:30;:::i;:::-;:48;;8211:82;;;;-1:-1:-1;;;8211:82:0;;18958:2:12;8211:82:0;;;18940:21:12;18997:2;18977:18;;;18970:30;-1:-1:-1;;;19016:18:12;;;19009:51;19077:18;;8211:82:0;18756:345:12;8211:82:0;8302:34;8312:10;8324:11;8302:9;:34::i;:::-;8365:48;;;;;;;;8374:10;8365:48;;;;;;;;;;;;;;;;;;-1:-1:-1;8343:19:0;;;:11;:19;;;;;;:70;;;;;;;;-1:-1:-1;;;8343:70:0;-1:-1:-1;;;;;;8343:70:0;;;-1:-1:-1;;;;;8343:70:0;;;;;;;;;;;;;;;8439:1;8424:16;;8420:156;;;8469:10;8451:29;;;;:17;:29;;;;;:44;;8484:11;;8451:29;:44;;8484:11;;8451:44;:::i;:::-;;;;-1:-1:-1;8420:156:0;;-1:-1:-1;8420:156:0;;8542:10;8518:35;;;;:23;:35;;;;;:50;;8557:11;;8518:35;:50;;8557:11;;8518:50;:::i;:::-;;;;-1:-1:-1;;8420:156:0;7165:1416;;;;;7063:1518;;;;:::o;12684:283::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;12760:21:0::1;12742:15;12825:3;12809:12;12760:21:::0;12819:2:::1;12809:12;:::i;:::-;12808:20;;;;:::i;:::-;12835:71;::::0;12788:40;;-1:-1:-1;12843:42:0::1;::::0;12835:71;::::1;;;::::0;12788:40;;12835:71:::1;::::0;;;12788:40;12843:42;12835:71;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;1101:6:10;;12913:48:0::1;::::0;-1:-1:-1;;;;;1101:6:10;;;;12939:21:0::1;12913:48:::0;::::1;;;::::0;::::1;::::0;;;12939:21;1101:6:10;12913:48:0;::::1;;;;;;;;;;;;;::::0;::::1;;;;10159:185:4::0;10297:39;10314:4;10320:2;10324:7;10297:39;;;;;;;;;;;;:16;:39::i;10554:98:0:-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;10625:21:0;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;10554:98:::0;:::o;7358:125:4:-;7422:7;7449:21;7462:7;7449:12;:21::i;:::-;:26;;7358:125;-1:-1:-1;;7358:125:4:o;8703:212:0:-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;8767:14:0::1;8784:13;3940:12:4::0;;3730:7;3924:13;:28;;3686:303;8784:13:0::1;8836:9;::::0;8767:30;;-1:-1:-1;8812:20:0::1;8821:11:::0;8767:30;8812:20:::1;:::i;:::-;:33;;8804:64;;;::::0;-1:-1:-1;;;8804:64:0;;19308:2:12;8804:64:0::1;::::0;::::1;19290:21:12::0;19347:2;19327:18;;;19320:30;-1:-1:-1;;;19366:18:12;;;19359:48;19424:18;;8804:64:0::1;19106:342:12::0;8804:64:0::1;8875:34;8885:10;8897:11;8875:9;:34::i;11947:105::-:0;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;3480:13:0::1;::::0;:18;3472:47:::1;;;;-1:-1:-1::0;;;3472:47:0::1;;;;;;;:::i;:::-;12024:9:::2;:22:::0;11947:105::o;4806:206:4:-;4870:7;-1:-1:-1;;;;;4894:19:4;;4890:60;;4922:28;;-1:-1:-1;;;4922:28:4;;;;;;;;;;;4890:60;-1:-1:-1;;;;;;4976:19:4;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4976:27:4;;4806:206::o;1661:101:10:-;1101:6;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;9007:123:0:-;9067:10;;;;;;;9066:11;9058:38;;;;-1:-1:-1;;;9058:38:0;;13931:2:12;9058:38:0;;;13913:21:12;13970:2;13950:18;;;13943:30;-1:-1:-1;;;13989:18:12;;;13982:44;14043:18;;9058:38:0;13729:338:12;9058:38:0;9103:21;9109:8;9119:4;9103:5;:21::i;:::-;9007:123;:::o;11730:211::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;3480:13:0::1;::::0;:18;3472:47:::1;;;;-1:-1:-1::0;;;3472:47:0::1;;;;;;;:::i;:::-;11839:1:::2;11830:6;:10;:25;;;;;11854:1;11844:6;:11;;11830:25;11822:69;;;::::0;-1:-1:-1;;;11822:69:0;;14274:2:12;11822:69:0::2;::::0;::::2;14256:21:12::0;14313:2;14293:18;;;14286:30;14352:33;14332:18;;;14325:61;14403:18;;11822:69:0::2;14072:355:12::0;11822:69:0::2;11898:17;::::0;;;:9:::2;:17;::::0;;;;;:23:::2;;:37:::0;11730:211::o;2859:48::-;;;;;;;;;;;;;;;;;;;;12173:103;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;12241:6:0::1;:29:::0;;-1:-1:-1;;;;;;12241:29:0::1;-1:-1:-1::0;;;;;12241:29:0;;;::::1;::::0;;;::::1;::::0;;12173:103::o;9639:840::-;9700:16;9750:19;9782:25;9820:22;9845:16;9855:5;9845:9;:16::i;:::-;9820:41;;9874:25;9916:14;-1:-1:-1;;;;;9902:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9902:29:0;;9874:57;;9944:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;9944:31:0;9993:9;9988:449;10037:14;10022:11;:29;9988:449;;10087:14;;;;:11;:14;;;;;;;;;10075:26;;;;;;;;;-1:-1:-1;;;;;10075:26:0;;;;-1:-1:-1;;;10075:26:0;;-1:-1:-1;;;;;10075:26:0;;;;;;;;-1:-1:-1;;;10075:26:0;;;;;;;;;;;;;;;;-1:-1:-1;10118:69:0;;10161:8;;10118:69;10207:14;;-1:-1:-1;;;;;10207:28:0;;10203:107;;10278:14;;;-1:-1:-1;10203:107:0;10351:5;-1:-1:-1;;;;;10330:26:0;:17;-1:-1:-1;;;;;10330:26:0;;10326:98;;;10405:1;10379:8;10388:13;;;;;;10379:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;10326:98;10053:3;;9988:449;;;-1:-1:-1;10456:8:0;;9639:840;-1:-1:-1;;;;;;9639:840:0:o;7719:104:4:-;7775:13;7808:7;7801:14;;;;;:::i;9329:287::-;-1:-1:-1;;;;;9428:24:4;;719:10:2;9428:24:4;9424:54;;;9461:17;;-1:-1:-1;;;9461:17:4;;;;;;;;;;;9424:54;719:10:2;9491:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9491:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;9491:53:4;;;;;;;;;;9560:48;;12407:41:12;;;9491:42:4;;719:10:2;9560:48:4;;12380:18:12;9560:48:4;;;;;;;9329:287;;:::o;11278:232:0:-;11386:4;11406:98;11425:12;;11406:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11439:17:0;;;:9;:17;;;;;;;;;:28;11479:23;;11439:28;;-1:-1:-1;11479:23:0;;-1:-1:-1;11496:5:0;;-1:-1:-1;11479:23:0;8164:2:12;8160:15;;;;-1:-1:-1;;8156:53:12;8144:66;;8235:2;8226:12;;8015:229;11479:23:0;;;;;;;;;;;;;11469:34;;;;;;11406:18;:98::i;:::-;11399:105;;11278:232;;;;;;;:::o;5318:652::-;5366:4;5379:10;5485:13;;5502:1;5485:18;:28;;;-1:-1:-1;5507:6:0;;;;5485:28;5481:42;;;5522:1;5515:8;;;5318:652;:::o;5481:42::-;5552:13;;:24;;5568:8;5552:24;:::i;:::-;5534:15;:42;5530:416;;;-1:-1:-1;5595:1:0;5959:5;5318:652;-1:-1:-1;5318:652:0:o;5530:416::-;5632:13;;:24;;5648:8;5632:24;:::i;:::-;5614:15;:42;5610:336;;;-1:-1:-1;5675:1:0;5959:5;5318:652;-1:-1:-1;5318:652:0:o;5610:336::-;5712:13;;:24;;5728:8;5712:24;:::i;:::-;5694:15;:42;5690:256;;;-1:-1:-1;5755:1:0;5959:5;5318:652;-1:-1:-1;5318:652:0:o;5690:256::-;5792:13;;:24;;5808:8;5792:24;:::i;:::-;5774:15;:42;5770:176;;;-1:-1:-1;5835:1:0;5959:5;5318:652;-1:-1:-1;5318:652:0:o;5770:176::-;5873:13;;5854:15;:32;5850:96;;-1:-1:-1;5905:1:0;5959:5;5318:652;-1:-1:-1;5318:652:0:o;5850:96::-;-1:-1:-1;5937:1:0;5850:96;5959:5;5318:652;-1:-1:-1;5318:652:0:o;10485:63::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;10527:8:0::1;:15:::0;;-1:-1:-1;;10527:15:0::1;::::0;::::1;::::0;;10485:63::o;12282:105::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;12352:7:0::1;:29:::0;;-1:-1:-1;;;;;;12352:29:0::1;-1:-1:-1::0;;;;;12352:29:0;;;::::1;::::0;;;::::1;::::0;;12282:105::o;10415:369:4:-;10582:28;10592:4;10598:2;10602:7;10582:9;:28::i;:::-;-1:-1:-1;;;;;10625:13:4;;1465:19:1;:23;;10625:76:4;;;;;10645:56;10676:4;10682:2;10686:7;10695:5;10645:30;:56::i;:::-;10644:57;10625:76;10621:156;;;10725:40;;-1:-1:-1;;;10725:40:4;;;;;;;;;;;10621:156;10415:369;;;;:::o;2187:37:0:-;;;;;;;:::i;9136:497::-;9234:13;9275:16;9283:7;9275;:16::i;:::-;9259:97;;;;-1:-1:-1;;;9259:97:0;;18542:2:12;9259:97:0;;;18524:21:12;18581:2;18561:18;;;18554:30;18620:34;18600:18;;;18593:62;-1:-1:-1;;;18671:18:12;;;18664:45;18726:19;;9259:97:0;18340:411:12;9259:97:0;9372:8;;;;;;;9369:62;;9409:14;9402:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9136:497;;;:::o;9369:62::-;9439:28;9470:10;:8;:10::i;:::-;9439:41;;9525:1;9500:14;9494:28;:32;:133;;;;;;;;;;;;;;;;;9562:14;9578:18;:7;:16;:18::i;:::-;9598:13;9545:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9494:133;9487:140;9136:497;-1:-1:-1;;;9136:497:0:o;12058:109::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;12126:12:0::1;:35:::0;;-1:-1:-1;;;;;;12126:35:0::1;-1:-1:-1::0;;;;;12126:35:0;;;::::1;::::0;;;::::1;::::0;;12058:109::o;10786:122::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;10869:33:0;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;4456:325::-:0;3480:13;;:18;3472:47;;;;-1:-1:-1;;;3472:47:0;;;;;;;:::i;:::-;4528:12:::1;::::0;:56:::1;::::0;-1:-1:-1;;;4528:56:0;;4558:10:::1;4528:56;::::0;::::1;10201:34:12::0;4578:4:0::1;10251:18:12::0;;;10244:43;-1:-1:-1;;;;;4528:12:0;;::::1;::::0;:29:::1;::::0;10136:18:12;;4528:56:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4520:90;;;::::0;-1:-1:-1;;;4520:90:0;;16444:2:12;4520:90:0::1;::::0;::::1;16426:21:12::0;16483:2;16463:18;;;16456:30;-1:-1:-1;;;16502:18:12;;;16495:51;16563:18;;4520:90:0::1;16242:345:12::0;4520:90:0::1;4617:12;::::0;:105:::1;::::0;-1:-1:-1;;;4617:105:0;;4643:10:::1;4617:105;::::0;::::1;10538:34:12::0;4663:42:0::1;10588:18:12::0;;;10581:43;10640:18;;;10633:34;;;-1:-1:-1;;;;;4617:12:0;;::::1;::::0;:25:::1;::::0;10473:18:12;;4617:105:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;4744:10:0::1;4729:26;::::0;;;:14:::1;:26;::::0;;;;;;:46;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;-1:-1:-1;;4456:325:0:o;12393:285::-;-1:-1:-1;;;;;12545:23:0;;12515:27;12545:23;;;:14;:23;;;;;;;;12515:53;;;;;;;;;;;;;;;;;12452:26;;;;12515:27;;:53;12545:23;12515:53;;;12545:23;12515:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;12605:23:0;;12575:27;12605:23;;;:14;:23;;;;;;;;12575:53;;;;;;;;;;;;;;;;;12515;;-1:-1:-1;12575:27:0;;:53;;-1:-1:-1;12575:53:0;;;12605:23;12575:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12643:13:0;;12575:53;;-1:-1:-1;12393:285:0;;-1:-1:-1;;;;;;;12393:285:0:o;6140:629::-;6234:4;;6607:1;6593:141;6610:5;;6593:141;;6633:11;6647:40;6661:8;6671:12;;6685:1;6647:13;:40::i;:::-;6633:54;;6703:6;6699:25;;;6723:1;6711:13;;6699:25;-1:-1:-1;;;6617:3:0;6593:141;;;-1:-1:-1;6754:9:0;6140:629;-1:-1:-1;;;;6140:629:0:o;10660:120::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;10742:32:0;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;4930:313::-:0;3480:13;;:18;3472:47;;;;-1:-1:-1;;;3472:47:0;;;;;;;:::i;:::-;5002:6:::1;::::0;:50:::1;::::0;-1:-1:-1;;;5002:50:0;;5026:10:::1;5002:50;::::0;::::1;10201:34:12::0;5046:4:0::1;10251:18:12::0;;;10244:43;-1:-1:-1;;;;;5002:6:0;;::::1;::::0;:23:::1;::::0;10136:18:12;;5002:50:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4994:84;;;::::0;-1:-1:-1;;;4994:84:0;;16444:2:12;4994:84:0::1;::::0;::::1;16426:21:12::0;16483:2;16463:18;;;16456:30;-1:-1:-1;;;16502:18:12;;;16495:51;16563:18;;4994:84:0::1;16242:345:12::0;4994:84:0::1;5085:6;::::0;:99:::1;::::0;-1:-1:-1;;;5085:99:0;;5105:10:::1;5085:99;::::0;::::1;10538:34:12::0;5125:42:0::1;10588:18:12::0;;;10581:43;10640:18;;;10633:34;;;-1:-1:-1;;;;;5085:6:0;;::::1;::::0;:19:::1;::::0;10473:18:12;;5085:99:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;5206:10:0::1;5191:26;::::0;;;:14:::1;:26;::::0;;;;;;:46;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;-1:-1:-1;;4930:313:0:o;1911:198:10:-;1101:6;;-1:-1:-1;;;;;1101:6:10;719:10:2;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:10;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:10;;14634:2:12;1991:73:10::1;::::0;::::1;14616:21:12::0;14673:2;14653:18;;;14646:30;14712:34;14692:18;;;14685:62;-1:-1:-1;;;14763:18:12;;;14756:36;14809:19;;1991:73:10::1;14432:402:12::0;1991:73:10::1;2074:28;2093:8;2074:18;:28::i;11039:174:4:-:0;11096:4;11160:13;;11150:7;:23;11120:85;;;;-1:-1:-1;;11178:20:4;;;;:11;:20;;;;;:27;-1:-1:-1;;;11178:27:4;;;;11177:28;;11039:174::o;19196:196::-;19311:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19311:29:4;-1:-1:-1;;;;;19311:29:4;;;;;;;;;19356:28;;19311:24;;19356:28;;;;;;;19196:196;;;:::o;14139:2130::-;14254:35;14292:21;14305:7;14292:12;:21::i;:::-;14254:59;;14352:4;-1:-1:-1;;;;;14330:26:4;:13;:18;;;-1:-1:-1;;;;;14330:26:4;;14326:67;;14365:28;;-1:-1:-1;;;14365:28:4;;;;;;;;;;;14326:67;14406:22;719:10:2;-1:-1:-1;;;;;14432:20:4;;;;:73;;-1:-1:-1;14469:36:4;14486:4;719:10:2;9687:164:4;:::i;14469:36::-;14432:126;;;-1:-1:-1;719:10:2;14522:20:4;14534:7;14522:11;:20::i;:::-;-1:-1:-1;;;;;14522:36:4;;14432:126;14406:153;;14577:17;14572:66;;14603:35;;-1:-1:-1;;;14603:35:4;;;;;;;;;;;14572:66;-1:-1:-1;;;;;14653:16:4;;14649:52;;14678:23;;-1:-1:-1;;;14678:23:4;;;;;;;;;;;14649:52;14822:35;14839:1;14843:7;14852:4;14822:8;:35::i;:::-;-1:-1:-1;;;;;15153:18:4;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;15153:31:4;;;-1:-1:-1;;;;;15153:31:4;;;-1:-1:-1;;15153:31:4;;;;;;;15199:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15199:29:4;;;;;;;;;;;15279:20;;;:11;:20;;;;;;15314:18;;-1:-1:-1;;;;;;15347:49:4;;;;-1:-1:-1;;;15380:15:4;15347:49;;;;;;;;;;15670:11;;15730:24;;;;;15773:13;;15279:20;;15730:24;;15773:13;15769:384;;15983:13;;15968:11;:28;15964:174;;16021:20;;16090:28;;;;-1:-1:-1;;;;;16064:54:4;-1:-1:-1;;;16064:54:4;-1:-1:-1;;;;;;16064:54:4;;;-1:-1:-1;;;;;16021:20:4;;16064:54;;;;15964:174;15128:1036;;;16200:7;16196:2;-1:-1:-1;;;;;16181:27:4;16190:4;-1:-1:-1;;;;;16181:27:4;-1:-1:-1;;;;;;;;;;;16181:27:4;;;;;;;;;16219:42;14243:2026;;14139:2130;;;:::o;11221:104::-;11290:27;11300:2;11304:8;11290:27;;;;;;;;;;;;:9;:27::i;6187:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6298:7:4;6381:13;;6374:4;:20;6343:886;;;6415:31;6449:17;;;:11;:17;;;;;;;;;6415:51;;;;;;;;;-1:-1:-1;;;;;6415:51:4;;;;-1:-1:-1;;;6415:51:4;;-1:-1:-1;;;;;6415:51:4;;;;;;;;-1:-1:-1;;;6415:51:4;;;;;;;;;;;;;;6485:729;;6535:14;;-1:-1:-1;;;;;6535:28:4;;6531:101;;6599:9;6187:1109;-1:-1:-1;;;6187:1109:4:o;6531:101::-;-1:-1:-1;;;6974:6:4;7019:17;;;;:11;:17;;;;;;;;;7007:29;;;;;;;;;-1:-1:-1;;;;;7007:29:4;;;;;-1:-1:-1;;;7007:29:4;;-1:-1:-1;;;;;7007:29:4;;;;;;;;-1:-1:-1;;;7007:29:4;;;;;;;;;;;;;7067:28;7063:109;;7135:9;6187:1109;-1:-1:-1;;;6187:1109:4:o;7063:109::-;6934:261;;;6396:833;6343:886;7257:31;;-1:-1:-1;;;7257:31:4;;;;;;;;;;;2263:187:10;2355:6;;;-1:-1:-1;;;;;2371:17:10;;;-1:-1:-1;;;;;;2371:17:10;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;16670:2408:4:-;16750:35;16788:21;16801:7;16788:12;:21::i;:::-;16837:18;;16750:59;;-1:-1:-1;16868:290:4;;;;16902:22;719:10:2;-1:-1:-1;;;;;16928:20:4;;;;:77;;-1:-1:-1;16969:36:4;16986:4;719:10:2;9687:164:4;:::i;16969:36::-;16928:134;;;-1:-1:-1;719:10:2;17026:20:4;17038:7;17026:11;:20::i;:::-;-1:-1:-1;;;;;17026:36:4;;16928:134;16902:161;;17085:17;17080:66;;17111:35;;-1:-1:-1;;;17111:35:4;;;;;;;;;;;17080:66;16887:271;16868:290;17286:35;17303:1;17307:7;17316:4;17286:8;:35::i;:::-;-1:-1:-1;;;;;17651:18:4;;;17617:31;17651:18;;;:12;:18;;;;;;;;17684:24;;-1:-1:-1;;;;;;;;;;17684:24:4;;;;;;;;;-1:-1:-1;;17684:24:4;;;;17723:29;;;;;17707:1;17723:29;;;;;;;;-1:-1:-1;;17723:29:4;;;;;;;;;;17885:20;;;:11;:20;;;;;;17920;;-1:-1:-1;;;;17988:15:4;17955:49;;;-1:-1:-1;;;17955:49:4;-1:-1:-1;;;;;;17955:49:4;;;;;;;;;;18019:22;-1:-1:-1;;;18019:22:4;;;18311:11;;;18371:24;;;;;18414:13;;17651:18;;18371:24;;18414:13;18410:384;;18624:13;;18609:11;:28;18605:174;;18662:20;;18731:28;;;;-1:-1:-1;;;;;18705:54:4;-1:-1:-1;;;18705:54:4;-1:-1:-1;;;;;;18705:54:4;;;-1:-1:-1;;;;;18662:20:4;;18705:54;;;;18605:174;-1:-1:-1;;18822:35:4;;18849:7;;-1:-1:-1;18845:1:4;;-1:-1:-1;;;;;;18822:35:4;;;-1:-1:-1;;;;;;;;;;;18822:35:4;18845:1;;18822:35;-1:-1:-1;;19045:12:4;:14;;;;;;-1:-1:-1;;16670:2408:4:o;1154:184:9:-;1275:4;1327;1298:25;1311:5;1318:4;1298:12;:25::i;:::-;:33;;1154:184;-1:-1:-1;;;;1154:184:9:o;19884:667:4:-;20068:72;;-1:-1:-1;;;20068:72:4;;20047:4;;-1:-1:-1;;;;;20068:36:4;;;;;:72;;719:10:2;;20119:4:4;;20125:7;;20134:5;;20068:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20068:72:4;;;;;;;;-1:-1:-1;;20068:72:4;;;;;;;;;;;;:::i;:::-;;;20064:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20302:13:4;;20298:235;;20348:40;;-1:-1:-1;;;20348:40:4;;;;;;;;;;;20298:235;20491:6;20485:13;20476:6;20472:2;20468:15;20461:38;20064:480;-1:-1:-1;;;;;;20187:55:4;-1:-1:-1;;;20187:55:4;;-1:-1:-1;20180:62:4;;4167:102:0;4227:13;4256:7;4249:14;;;;;:::i;328:703:11:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:11;;;;;;;;;;;;-1:-1:-1;;;627:10:11;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:11;;-1:-1:-1;773:2:11;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:11;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:11;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:11;;;;;;;;-1:-1:-1;972:11:11;981:2;972:11;;:::i;:::-;;;844:150;;11688:163:4;11811:32;11817:2;11821:8;11831:5;11838:4;11811:5;:32::i;1689:662:9:-;1772:7;1814:4;1772:7;1828:488;1852:5;:12;1848:1;:16;1828:488;;;1885:20;1908:5;1914:1;1908:8;;;;;;;;:::i;:::-;;;;;;;1885:31;;1950:12;1934;:28;1930:376;;2425:13;2473:15;;;2508:4;2501:15;;;2554:4;2538:21;;2060:57;;1930:376;;;2425:13;2473:15;;;2508:4;2501:15;;;2554:4;2538:21;;2234:57;;1930:376;-1:-1:-1;1866:3:9;;;;:::i;:::-;;;;1828:488;;;-1:-1:-1;2332:12:9;1689:662;-1:-1:-1;;;1689:662:9:o;12110:1775:4:-;12249:20;12272:13;-1:-1:-1;;;;;12300:16:4;;12296:48;;12325:19;;-1:-1:-1;;;12325:19:4;;;;;;;;;;;12296:48;12359:13;12355:44;;12381:18;;-1:-1:-1;;;12381:18:4;;;;;;;;;;;12355:44;-1:-1:-1;;;;;12750:16:4;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;12809:49:4;;-1:-1:-1;;;;;12750:44:4;;;;;;;12809:49;;;;-1:-1:-1;;12750:44:4;;;;;;12809:49;;;;;;;;;;;;;;;;12875:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;12925:66:4;;;;-1:-1:-1;;;12975:15:4;12925:66;;;;;;;;;;12875:25;13072:23;;;13116:4;:23;;;;-1:-1:-1;;;;;;13124:13:4;;1465:19:1;:23;;13124:15:4;13112:641;;;13160:314;13191:38;;13216:12;;-1:-1:-1;;;;;13191:38:4;;;13208:1;;-1:-1:-1;;;;;;;;;;;13191:38:4;13208:1;;13191:38;13257:69;13296:1;13300:2;13304:14;;;;;;13320:5;13257:30;:69::i;:::-;13252:174;;13362:40;;-1:-1:-1;;;13362:40:4;;;;;;;;;;;13252:174;13469:3;13453:12;:19;;13160:314;;13555:12;13538:13;;:29;13534:43;;13569:8;;;13534:43;13112:641;;;13618:120;13649:40;;13674:14;;;;;-1:-1:-1;;;;;13649:40:4;;;13666:1;;-1:-1:-1;;;;;;;;;;;13649:40:4;13666:1;;13649:40;13733:3;13717:12;:19;;13618:120;;13112:641;-1:-1:-1;13767:13:4;:28;13817:60;10415:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:12;78:5;-1:-1:-1;;;;;149:2:12;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:12;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:12;;757:42;;747:70;;813:1;810;803:12;828:367;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:12;;-1:-1:-1;;;;;1028:30:12;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;-1:-1:-1;;;;;2408:6:12;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:12;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:511::-;2755:6;2763;2771;2824:2;2812:9;2803:7;2799:23;2795:32;2792:52;;;2840:1;2837;2830:12;2792:52;2863:29;2882:9;2863:29;:::i;:::-;2853:39;;2943:2;2932:9;2928:18;2915:32;-1:-1:-1;;;;;2962:6:12;2959:30;2956:50;;;3002:1;2999;2992:12;2956:50;3041:70;3103:7;3094:6;3083:9;3079:22;3041:70;:::i;:::-;2660:511;;3130:8;;-1:-1:-1;3015:96:12;;-1:-1:-1;;;;2660:511:12:o;3176:579::-;3280:6;3288;3296;3304;3357:2;3345:9;3336:7;3332:23;3328:32;3325:52;;;3373:1;3370;3363:12;3325:52;3396:29;3415:9;3396:29;:::i;:::-;3386:39;;3476:2;3465:9;3461:18;3448:32;-1:-1:-1;;;;;3495:6:12;3492:30;3489:50;;;3535:1;3532;3525:12;3489:50;3574:70;3636:7;3627:6;3616:9;3612:22;3574:70;:::i;:::-;3176:579;;3663:8;;-1:-1:-1;3548:96:12;;3745:2;3730:18;3717:32;;3176:579;-1:-1:-1;;;;3176:579:12:o;3760:315::-;3825:6;3833;3886:2;3874:9;3865:7;3861:23;3857:32;3854:52;;;3902:1;3899;3892:12;3854:52;3925:29;3944:9;3925:29;:::i;:::-;3915:39;;4004:2;3993:9;3989:18;3976:32;4017:28;4039:5;4017:28;:::i;:::-;4064:5;4054:15;;;3760:315;;;;;:::o;4080:254::-;4148:6;4156;4209:2;4197:9;4188:7;4184:23;4180:32;4177:52;;;4225:1;4222;4215:12;4177:52;4248:29;4267:9;4248:29;:::i;:::-;4238:39;4324:2;4309:18;;;;4296:32;;-1:-1:-1;;;4080:254:12:o;4339:634::-;4440:6;4448;4456;4464;4517:2;4505:9;4496:7;4492:23;4488:32;4485:52;;;4533:1;4530;4523:12;4485:52;4573:9;4560:23;-1:-1:-1;;;;;4598:6:12;4595:30;4592:50;;;4638:1;4635;4628:12;4592:50;4677:70;4739:7;4730:6;4719:9;4715:22;4677:70;:::i;:::-;4766:8;;-1:-1:-1;4651:96:12;-1:-1:-1;;4848:2:12;4833:18;;4820:32;;-1:-1:-1;4902:2:12;4887:18;;4874:32;4915:28;4874:32;4915:28;:::i;:::-;4339:634;;;;-1:-1:-1;4339:634:12;;-1:-1:-1;;4339:634:12:o;4978:241::-;5034:6;5087:2;5075:9;5066:7;5062:23;5058:32;5055:52;;;5103:1;5100;5093:12;5055:52;5142:9;5129:23;5161:28;5183:5;5161:28;:::i;5224:245::-;5291:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:52;;;5360:1;5357;5350:12;5312:52;5392:9;5386:16;5411:28;5433:5;5411:28;:::i;5474:245::-;5532:6;5585:2;5573:9;5564:7;5560:23;5556:32;5553:52;;;5601:1;5598;5591:12;5553:52;5640:9;5627:23;5659:30;5683:5;5659:30;:::i;5724:249::-;5793:6;5846:2;5834:9;5825:7;5821:23;5817:32;5814:52;;;5862:1;5859;5852:12;5814:52;5894:9;5888:16;5913:30;5937:5;5913:30;:::i;5978:450::-;6047:6;6100:2;6088:9;6079:7;6075:23;6071:32;6068:52;;;6116:1;6113;6106:12;6068:52;6156:9;6143:23;-1:-1:-1;;;;;6181:6:12;6178:30;6175:50;;;6221:1;6218;6211:12;6175:50;6244:22;;6297:4;6289:13;;6285:27;-1:-1:-1;6275:55:12;;6326:1;6323;6316:12;6275:55;6349:73;6414:7;6409:2;6396:16;6391:2;6387;6383:11;6349:73;:::i;6433:180::-;6492:6;6545:2;6533:9;6524:7;6520:23;6516:32;6513:52;;;6561:1;6558;6551:12;6513:52;-1:-1:-1;6584:23:12;;6433:180;-1:-1:-1;6433:180:12:o;6618:184::-;6688:6;6741:2;6729:9;6720:7;6716:23;6712:32;6709:52;;;6757:1;6754;6747:12;6709:52;-1:-1:-1;6780:16:12;;6618:184;-1:-1:-1;6618:184:12:o;6807:248::-;6875:6;6883;6936:2;6924:9;6915:7;6911:23;6907:32;6904:52;;;6952:1;6949;6942:12;6904:52;-1:-1:-1;;6975:23:12;;;7045:2;7030:18;;;7017:32;;-1:-1:-1;6807:248:12:o;7313:435::-;7366:3;7404:5;7398:12;7431:6;7426:3;7419:19;7457:4;7486:2;7481:3;7477:12;7470:19;;7523:2;7516:5;7512:14;7544:1;7554:169;7568:6;7565:1;7562:13;7554:169;;;7629:13;;7617:26;;7663:12;;;;7698:15;;;;7590:1;7583:9;7554:169;;;-1:-1:-1;7739:3:12;;7313:435;-1:-1:-1;;;;;7313:435:12:o;7753:257::-;7794:3;7832:5;7826:12;7859:6;7854:3;7847:19;7875:63;7931:6;7924:4;7919:3;7915:14;7908:4;7901:5;7897:16;7875:63;:::i;:::-;7992:2;7971:15;-1:-1:-1;;7967:29:12;7958:39;;;;7999:4;7954:50;;7753:257;-1:-1:-1;;7753:257:12:o;8249:1527::-;8473:3;8511:6;8505:13;8537:4;8550:51;8594:6;8589:3;8584:2;8576:6;8572:15;8550:51;:::i;:::-;8664:13;;8623:16;;;;8686:55;8664:13;8623:16;8708:15;;;8686:55;:::i;:::-;8830:13;;8763:20;;;8803:1;;8890;8912:18;;;;8965;;;;8992:93;;9070:4;9060:8;9056:19;9044:31;;8992:93;9133:2;9123:8;9120:16;9100:18;9097:40;9094:167;;;-1:-1:-1;;;9160:33:12;;9216:4;9213:1;9206:15;9246:4;9167:3;9234:17;9094:167;9277:18;9304:110;;;;9428:1;9423:328;;;;9270:481;;9304:110;-1:-1:-1;;9339:24:12;;9325:39;;9384:20;;;;-1:-1:-1;9304:110:12;;9423:328;20051:1;20044:14;;;20088:4;20075:18;;9518:1;9532:169;9546:8;9543:1;9540:15;9532:169;;;9628:14;;9613:13;;;9606:37;9671:16;;;;9563:10;;9532:169;;;9536:3;;9732:8;9725:5;9721:20;9714:27;;9270:481;-1:-1:-1;9767:3:12;;8249:1527;-1:-1:-1;;;;;;;;;;;8249:1527:12:o;10678:488::-;-1:-1:-1;;;;;10947:15:12;;;10929:34;;10999:15;;10994:2;10979:18;;10972:43;11046:2;11031:18;;11024:34;;;11094:3;11089:2;11074:18;;11067:31;;;10872:4;;11115:45;;11140:19;;11132:6;11115:45;:::i;:::-;11107:53;10678:488;-1:-1:-1;;;;;;10678:488:12:o;11531:261::-;11710:2;11699:9;11692:21;11673:4;11730:56;11782:2;11771:9;11767:18;11759:6;11730:56;:::i;11797:465::-;12054:2;12043:9;12036:21;12017:4;12080:56;12132:2;12121:9;12117:18;12109:6;12080:56;:::i;:::-;12184:9;12176:6;12172:22;12167:2;12156:9;12152:18;12145:50;12212:44;12249:6;12241;12212:44;:::i;:::-;12204:52;11797:465;-1:-1:-1;;;;;11797:465:12:o;13159:219::-;13308:2;13297:9;13290:21;13271:4;13328:44;13368:2;13357:9;13353:18;13345:6;13328:44;:::i;17282:340::-;17484:2;17466:21;;;17523:2;17503:18;;;17496:30;-1:-1:-1;;;17557:2:12;17542:18;;17535:46;17613:2;17598:18;;17282:340::o;17979:356::-;18181:2;18163:21;;;18200:18;;;18193:30;18259:34;18254:2;18239:18;;18232:62;18326:2;18311:18;;17979:356::o;20104:128::-;20144:3;20175:1;20171:6;20168:1;20165:13;20162:39;;;20181:18;;:::i;:::-;-1:-1:-1;20217:9:12;;20104:128::o;20237:120::-;20277:1;20303;20293:35;;20308:18;;:::i;:::-;-1:-1:-1;20342:9:12;;20237:120::o;20362:168::-;20402:7;20468:1;20464;20460:6;20456:14;20453:1;20450:21;20445:1;20438:9;20431:17;20427:45;20424:71;;;20475:18;;:::i;:::-;-1:-1:-1;20515:9:12;;20362:168::o;20535:125::-;20575:4;20603:1;20600;20597:8;20594:34;;;20608:18;;:::i;:::-;-1:-1:-1;20645:9:12;;20535:125::o;20665:258::-;20737:1;20747:113;20761:6;20758:1;20755:13;20747:113;;;20837:11;;;20831:18;20818:11;;;20811:39;20783:2;20776:10;20747:113;;;20878:6;20875:1;20872:13;20869:48;;;-1:-1:-1;;20913:1:12;20895:16;;20888:27;20665:258::o;20928:380::-;21007:1;21003:12;;;;21050;;;21071:61;;21125:4;21117:6;21113:17;21103:27;;21071:61;21178:2;21170:6;21167:14;21147:18;21144:38;21141:161;;;21224:10;21219:3;21215:20;21212:1;21205:31;21259:4;21256:1;21249:15;21287:4;21284:1;21277:15;21141:161;;20928:380;;;:::o;21313:135::-;21352:3;-1:-1:-1;;21373:17:12;;21370:43;;;21393:18;;:::i;:::-;-1:-1:-1;21440:1:12;21429:13;;21313:135::o;21453:112::-;21485:1;21511;21501:35;;21516:18;;:::i;:::-;-1:-1:-1;21550:9:12;;21453:112::o;21570:127::-;21631:10;21626:3;21622:20;21619:1;21612:31;21662:4;21659:1;21652:15;21686:4;21683:1;21676:15;21702:127;21763:10;21758:3;21754:20;21751:1;21744:31;21794:4;21791:1;21784:15;21818:4;21815:1;21808:15;21834:127;21895:10;21890:3;21886:20;21883:1;21876:31;21926:4;21923:1;21916:15;21950:4;21947:1;21940:15;21966:127;22027:10;22022:3;22018:20;22015:1;22008:31;22058:4;22055:1;22048:15;22082:4;22079:1;22072:15;22098:118;22184:5;22177:13;22170:21;22163:5;22160:32;22150:60;;22206:1;22203;22196:12;22221:131;-1:-1:-1;;;;;;22295:32:12;;22285:43;;22275:71;;22342:1;22339;22332:12

Swarm Source

ipfs://a8de74e5f7c28a9517e26ebe0039fec7052733e6ddce5fd0dc97266c924162a6
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.