ETH Price: $3,316.94 (-1.28%)

Token

Catslap (SLAP)
 

Overview

Max Total Supply

8,999,821,770 SLAP

Holders

1,561

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
80,808.690998844358435606 SLAP

Value
$0.00
0x83591f820c0d5c92114687b1d0fe40b60a10c759
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:
Token

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-11-20
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
  /**
   * @dev Emitted when `value` tokens are moved from one account (`from`) to
   * another (`to`).
   *
   * Note that `value` may be zero.
   */
  event Transfer(address indexed from, address indexed to, uint256 value);

  /**
   * @dev Emitted when the allowance of a `spender` for an `owner` is set by
   * a call to {approve}. `value` is the new allowance.
   */
  event Approval(address indexed owner, address indexed spender, uint256 value);

  /**
   * @dev Returns the amount of tokens in existence.
   */
  function totalSupply() external view returns (uint256);

  /**
   * @dev Returns the amount of tokens owned by `account`.
   */
  function balanceOf(address account) external view returns (uint256);

  /**
   * @dev Moves `amount` tokens from the caller's account to `to`.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transfer(address to, uint256 amount) external returns (bool);

  /**
   * @dev Returns the remaining number of tokens that `spender` will be
   * allowed to spend on behalf of `owner` through {transferFrom}. This is
   * zero by default.
   *
   * This value changes when {approve} or {transferFrom} are called.
   */
  function allowance(address owner, address spender) external view returns (uint256);

  /**
   * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * IMPORTANT: Beware that changing an allowance with this method brings the risk
   * that someone may use both the old and the new allowance by unfortunate
   * transaction ordering. One possible solution to mitigate this race
   * condition is to first reduce the spender's allowance to 0 and set the
   * desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   *
   * Emits an {Approval} event.
   */
  function approve(address spender, uint256 amount) external returns (bool);

  /**
   * @dev Moves `amount` tokens from `from` to `to` using the
   * allowance mechanism. `amount` is then deducted from the caller's
   * allowance.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
  /**
   * @dev Returns the name of the token.
   */
  function name() external view returns (string memory);

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

  /**
   * @dev Returns the decimals places of the token.
   */
  function decimals() external view returns (uint8);
}

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

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

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

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

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

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

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

  /**
   * @dev Leaves the contract without owner. It will not be possible to call
   * `onlyOwner` functions. Can only be called by the current owner.
   *
   * NOTE: Renouncing ownership will leave the contract without an owner,
   * thereby disabling 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);
  }
}

contract Token is Context, IERC20Metadata, Ownable {
  mapping(address => uint256) private _balances;

  mapping(address => mapping(address => uint256)) private _allowances;

  uint256 private _totalSupply;

  string private _name;
  string private _symbol;
  uint8 private constant _decimals = 18;
  uint256 public constant liquidityReserve = 4_500_000_000 * (10 ** _decimals);
  uint256 public constant stakingReserve = 1_800_000_000 * (10 ** _decimals);
  uint256 public constant communityRewardsReserve = 900_000_000 * (10 ** _decimals);
  uint256 public constant projectFundsReserve = 900_000_000 * (10 ** _decimals);
  uint256 public constant teamReserve = 900_000_000 * (10 ** _decimals);

  /**
   * @dev Contract constructor.
   */
  constructor() {
    _name = 'Catslap';
    _symbol = 'SLAP';
    _mint(0x9f8b521d392A514231E9878D5a107A045Cd6Af6a, liquidityReserve);
    _mint(0xFbAA70186527bB8291647D8EE4431567870e8E9E, stakingReserve);
    _mint(0x339ADe0aAf123CfA81dA88579e462Fa6F54c4A44, communityRewardsReserve);
    _mint(0x5c0Cfc0FAb5c24b1262Baf79AD5EfC21CCe83579, projectFundsReserve);
    _mint(0x74D7f34E2F1D9D198f6886ec389E1d6B0973f417, teamReserve);
  }

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

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

  /**
   * @dev Returns the number of decimals used for token display.
   * @return The number of decimals.
   */
  function decimals() public view virtual override returns (uint8) {
    return _decimals;
  }

  /**
   * @dev Returns the total supply of the token.
   * @return The total supply.
   */
  function totalSupply() public view virtual override returns (uint256) {
    return _totalSupply;
  }

  /**
   * @dev Returns the balance of the specified account.
   * @param account The address to check the balance for.
   * @return The balance of the account.
   */
  function balanceOf(address account) public view virtual override returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev Transfers tokens from the caller to a specified recipient.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  /**
   * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
   * @param from The address that approves the spending.
   * @param to The address that is allowed to spend.
   * @return The remaining allowance for the spender.
   */
  function allowance(address from, address to) public view virtual override returns (uint256) {
    return _allowances[from][to];
  }

  /**
   * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
   * @param to The address to approve the spending for.
   * @param amount The amount of tokens to approve.
   * @return A boolean value indicating whether the approval was successful.
   */
  function approve(address to, uint256 amount) public virtual override returns (bool) {
    _approve(_msgSender(), to, amount);
    return true;
  }

  /**
   * @dev Transfers tokens from one address to another.
   * @param sender The address to transfer tokens from.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
    _transfer(sender, recipient, amount);

    uint256 currentAllowance = _allowances[sender][_msgSender()];
    require(currentAllowance >= amount, 'ERC20: transfer amount exceeds allowance');
    unchecked {
      _approve(sender, _msgSender(), currentAllowance - amount);
    }

    return true;
  }

  /**
   * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller.
   * @param to The address to increase the allowance for.
   * @param addedValue The amount of tokens to increase the allowance by.
   * @return A boolean value indicating whether the increase was successful.
   */
  function increaseAllowance(address to, uint256 addedValue) public virtual returns (bool) {
    _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
    return true;
  }

  /**
   * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
   * @param to The account allowed to spend the tokens.
   * @param subtractedValue The amount of tokens to decrease the allowance by.
   * @return A boolean value indicating whether the operation succeeded.
   */
  function decreaseAllowance(address to, uint256 subtractedValue) public virtual returns (bool) {
    uint256 currentAllowance = _allowances[_msgSender()][to];
    require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero');
    unchecked {
      _approve(_msgSender(), to, currentAllowance - subtractedValue);
    }

    return true;
  }

  /**
   * @dev Transfers `amount` tokens from `sender` to `recipient`.
   * @param sender The account to transfer tokens from.
   * @param recipient The account to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   */
  function _transfer(address sender, address recipient, uint256 amount) internal virtual {
    require(amount > 0, 'ERC20: transfer amount zero');
    require(sender != address(0), 'ERC20: transfer from the zero address');
    require(recipient != address(0), 'ERC20: transfer to the zero address');

    uint256 senderBalance = _balances[sender];
    require(senderBalance >= amount, 'ERC20: transfer amount exceeds balance');
    unchecked {
      _balances[sender] = senderBalance - amount;
    }
    _balances[recipient] += amount;

    emit Transfer(sender, recipient, amount);
  }

  /**
   * @dev Creates `amount` tokens and assigns them to `account`.
   * @param account The account to assign the newly created tokens to.
   * @param amount The amount of tokens to create.
   */
  function _mint(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: mint to the zero address');

    _totalSupply += amount;
    _balances[account] += amount;
    emit Transfer(address(0), account, amount);
  }

  /**
   * @dev Destroys `amount` tokens from `account`, reducing the total supply.
   * @param account The account to burn tokens from.
   * @param amount The amount of tokens to burn.
   */
  function _burn(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: burn from the zero address');

    uint256 accountBalance = _balances[account];
    require(accountBalance >= amount, 'ERC20: burn amount exceeds balance');
    unchecked {
      _balances[account] = accountBalance - amount;
    }
    _totalSupply -= amount;

    emit Transfer(account, address(0), amount);
  }

  /**
   * @dev Destroys `amount` tokens from the caller's account, reducing the total supply.
   * @param amount The amount of tokens to burn.
   */
  function burn(uint256 amount) external {
    _burn(_msgSender(), amount);
  }

  /**
   * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
   * @param from The account granting the allowance.
   * @param to The account allowed to spend the tokens.
   * @param amount The amount of tokens to allow.
   */
  function _approve(address from, address to, uint256 amount) internal virtual {
    require(from != address(0), 'ERC20: approve from the zero address');
    require(to != address(0), 'ERC20: approve to the zero address');

    _allowances[from][to] = amount;
    emit Approval(from, to, amount);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityRewardsReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectFundsReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamReserve","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5062000032620000266200023360201b60201c565b6200023b60201b60201c565b6040518060400160405280600781526020017f436174736c617000000000000000000000000000000000000000000000000000815250600490805190602001906200007f92919062000451565b506040518060400160405280600481526020017f534c41500000000000000000000000000000000000000000000000000000000081525060059080519060200190620000cd92919062000451565b5062000115739f8b521d392a514231e9878d5a107a045cd6af6a6012600a620000f791906200069b565b64010c388d00620001099190620006ec565b620002ff60201b60201c565b6200015b73fbaa70186527bb8291647d8ee4431567870e8e9e6012600a6200013e91906200069b565b636b49d2006200014f9190620006ec565b620002ff60201b60201c565b620001a173339ade0aaf123cfa81da88579e462fa6f54c4a446012600a6200018491906200069b565b6335a4e900620001959190620006ec565b620002ff60201b60201c565b620001e7735c0cfc0fab5c24b1262baf79ad5efc21cce835796012600a620001ca91906200069b565b6335a4e900620001db9190620006ec565b620002ff60201b60201c565b6200022d7374d7f34e2f1d9d198f6886ec389e1d6b0973f4176012600a6200021091906200069b565b6335a4e900620002219190620006ec565b620002ff60201b60201c565b620008c0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000372576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036990620007ae565b60405180910390fd5b8060036000828254620003869190620007d0565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003de9190620007d0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200044591906200083e565b60405180910390a35050565b8280546200045f906200088a565b90600052602060002090601f016020900481019282620004835760008555620004cf565b82601f106200049e57805160ff1916838001178555620004cf565b82800160010185558215620004cf579182015b82811115620004ce578251825591602001919060010190620004b1565b5b509050620004de9190620004e2565b5090565b5b80821115620004fd576000816000905550600101620004e3565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200058f5780860481111562000567576200056662000501565b5b6001851615620005775780820291505b8081029050620005878562000530565b945062000547565b94509492505050565b600082620005aa57600190506200067d565b81620005ba57600090506200067d565b8160018114620005d35760028114620005de5762000614565b60019150506200067d565b60ff841115620005f357620005f262000501565b5b8360020a9150848211156200060d576200060c62000501565b5b506200067d565b5060208310610133831016604e8410600b84101617156200064e5782820a90508381111562000648576200064762000501565b5b6200067d565b6200065d84848460016200053d565b9250905081840481111562000677576200067662000501565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006a88262000684565b9150620006b5836200068e565b9250620006e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000598565b905092915050565b6000620006f98262000684565b9150620007068362000684565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000742576200074162000501565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000796601f836200074d565b9150620007a3826200075e565b602082019050919050565b60006020820190508181036000830152620007c98162000787565b9050919050565b6000620007dd8262000684565b9150620007ea8362000684565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000822576200082162000501565b5b828201905092915050565b620008388162000684565b82525050565b60006020820190506200085560008301846200082d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008a357607f821691505b60208210811415620008ba57620008b96200085b565b5b50919050565b611eb480620008d06000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80637e50c644116100ad578063a9059cbb11610071578063a9059cbb14610337578063b61d43b114610367578063b753bfe914610385578063dd62ed3e146103a3578063f2fde38b146103d35761012c565b80637e50c6441461028f5780638da5cb5b146102ad57806395d89b41146102cb5780639f8810cd146102e9578063a457c2d7146103075761012c565b806339509351116100f457806339509351146101eb5780634287f14a1461021b57806342966c681461023957806370a0823114610255578063715018a6146102855761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103ef565b6040516101469190611257565b60405180910390f35b61016960048036038101906101649190611312565b610481565b604051610176919061136d565b60405180910390f35b61018761049f565b6040516101949190611397565b60405180910390f35b6101b760048036038101906101b291906113b2565b6104a9565b6040516101c4919061136d565b60405180910390f35b6101d56105a1565b6040516101e29190611421565b60405180910390f35b61020560048036038101906102009190611312565b6105aa565b604051610212919061136d565b60405180910390f35b610223610656565b6040516102309190611397565b60405180910390f35b610253600480360381019061024e919061143c565b610676565b005b61026f600480360381019061026a9190611469565b61068a565b60405161027c9190611397565b60405180910390f35b61028d6106d3565b005b6102976106e7565b6040516102a49190611397565b60405180910390f35b6102b5610707565b6040516102c291906114a5565b60405180910390f35b6102d3610730565b6040516102e09190611257565b60405180910390f35b6102f16107c2565b6040516102fe9190611397565b60405180910390f35b610321600480360381019061031c9190611312565b6107e2565b60405161032e919061136d565b60405180910390f35b610351600480360381019061034c9190611312565b6108cd565b60405161035e919061136d565b60405180910390f35b61036f6108eb565b60405161037c9190611397565b60405180910390f35b61038d61090b565b60405161039a9190611397565b60405180910390f35b6103bd60048036038101906103b891906114c0565b61092c565b6040516103ca9190611397565b60405180910390f35b6103ed60048036038101906103e89190611469565b6109b3565b005b6060600480546103fe9061152f565b80601f016020809104026020016040519081016040528092919081815260200182805461042a9061152f565b80156104775780601f1061044c57610100808354040283529160200191610477565b820191906000526020600020905b81548152906001019060200180831161045a57829003601f168201915b5050505050905090565b600061049561048e610a37565b8484610a3f565b6001905092915050565b6000600354905090565b60006104b6848484610c0a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610501610a37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610581576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610578906115d3565b60405180910390fd5b6105958561058d610a37565b858403610a3f565b60019150509392505050565b60006012905090565b600061064c6105b7610a37565b8484600260006105c5610a37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106479190611622565b610a3f565b6001905092915050565b6012600a61066491906117ab565b6335a4e90061067391906117f6565b81565b610687610681610a37565b82610ebb565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106db61107c565b6106e560006110fa565b565b6012600a6106f591906117ab565b6335a4e90061070491906117f6565b81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461073f9061152f565b80601f016020809104026020016040519081016040528092919081815260200182805461076b9061152f565b80156107b85780601f1061078d576101008083540402835291602001916107b8565b820191906000526020600020905b81548152906001019060200180831161079b57829003601f168201915b5050505050905090565b6012600a6107d091906117ab565b6335a4e9006107df91906117f6565b81565b600080600260006107f1610a37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a5906118c2565b60405180910390fd5b6108c26108b9610a37565b85858403610a3f565b600191505092915050565b60006108e16108da610a37565b8484610c0a565b6001905092915050565b6012600a6108f991906117ab565b636b49d20061090891906117f6565b81565b6012600a61091991906117ab565b64010c388d0061092991906117f6565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109bb61107c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290611954565b60405180910390fd5b610a34816110fa565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa6906119e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690611a78565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bfd9190611397565b60405180910390a3505050565b60008111610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490611ae4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490611b76565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490611c08565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90611c9a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e499190611622565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ead9190611397565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290611d2c565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990611dbe565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461100a9190611dde565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161106f9190611397565b60405180910390a3505050565b611084610a37565b73ffffffffffffffffffffffffffffffffffffffff166110a2610707565b73ffffffffffffffffffffffffffffffffffffffff16146110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90611e5e565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111f85780820151818401526020810190506111dd565b83811115611207576000848401525b50505050565b6000601f19601f8301169050919050565b6000611229826111be565b61123381856111c9565b93506112438185602086016111da565b61124c8161120d565b840191505092915050565b60006020820190508181036000830152611271818461121e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112a98261127e565b9050919050565b6112b98161129e565b81146112c457600080fd5b50565b6000813590506112d6816112b0565b92915050565b6000819050919050565b6112ef816112dc565b81146112fa57600080fd5b50565b60008135905061130c816112e6565b92915050565b6000806040838503121561132957611328611279565b5b6000611337858286016112c7565b9250506020611348858286016112fd565b9150509250929050565b60008115159050919050565b61136781611352565b82525050565b6000602082019050611382600083018461135e565b92915050565b611391816112dc565b82525050565b60006020820190506113ac6000830184611388565b92915050565b6000806000606084860312156113cb576113ca611279565b5b60006113d9868287016112c7565b93505060206113ea868287016112c7565b92505060406113fb868287016112fd565b9150509250925092565b600060ff82169050919050565b61141b81611405565b82525050565b60006020820190506114366000830184611412565b92915050565b60006020828403121561145257611451611279565b5b6000611460848285016112fd565b91505092915050565b60006020828403121561147f5761147e611279565b5b600061148d848285016112c7565b91505092915050565b61149f8161129e565b82525050565b60006020820190506114ba6000830184611496565b92915050565b600080604083850312156114d7576114d6611279565b5b60006114e5858286016112c7565b92505060206114f6858286016112c7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061154757607f821691505b6020821081141561155b5761155a611500565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006115bd6028836111c9565b91506115c882611561565b604082019050919050565b600060208201905081810360008301526115ec816115b0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061162d826112dc565b9150611638836112dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561166d5761166c6115f3565b5b828201905092915050565b60008160011c9050919050565b6000808291508390505b60018511156116cf578086048111156116ab576116aa6115f3565b5b60018516156116ba5780820291505b80810290506116c885611678565b945061168f565b94509492505050565b6000826116e857600190506117a4565b816116f657600090506117a4565b816001811461170c576002811461171657611745565b60019150506117a4565b60ff841115611728576117276115f3565b5b8360020a91508482111561173f5761173e6115f3565b5b506117a4565b5060208310610133831016604e8410600b841016171561177a5782820a905083811115611775576117746115f3565b5b6117a4565b6117878484846001611685565b9250905081840481111561179e5761179d6115f3565b5b81810290505b9392505050565b60006117b6826112dc565b91506117c183611405565b92506117ee7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846116d8565b905092915050565b6000611801826112dc565b915061180c836112dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611845576118446115f3565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118ac6025836111c9565b91506118b782611850565b604082019050919050565b600060208201905081810360008301526118db8161189f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061193e6026836111c9565b9150611949826118e2565b604082019050919050565b6000602082019050818103600083015261196d81611931565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d06024836111c9565b91506119db82611974565b604082019050919050565b600060208201905081810360008301526119ff816119c3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a626022836111c9565b9150611a6d82611a06565b604082019050919050565b60006020820190508181036000830152611a9181611a55565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611ace601b836111c9565b9150611ad982611a98565b602082019050919050565b60006020820190508181036000830152611afd81611ac1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b606025836111c9565b9150611b6b82611b04565b604082019050919050565b60006020820190508181036000830152611b8f81611b53565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf26023836111c9565b9150611bfd82611b96565b604082019050919050565b60006020820190508181036000830152611c2181611be5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c846026836111c9565b9150611c8f82611c28565b604082019050919050565b60006020820190508181036000830152611cb381611c77565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d166021836111c9565b9150611d2182611cba565b604082019050919050565b60006020820190508181036000830152611d4581611d09565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611da86022836111c9565b9150611db382611d4c565b604082019050919050565b60006020820190508181036000830152611dd781611d9b565b9050919050565b6000611de9826112dc565b9150611df4836112dc565b925082821015611e0757611e066115f3565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e486020836111c9565b9150611e5382611e12565b602082019050919050565b60006020820190508181036000830152611e7781611e3b565b905091905056fea2646970667358221220bda77f7532badb79ea6f9300029de35eadaca5db1aef6b88d3fd12897251591264736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80637e50c644116100ad578063a9059cbb11610071578063a9059cbb14610337578063b61d43b114610367578063b753bfe914610385578063dd62ed3e146103a3578063f2fde38b146103d35761012c565b80637e50c6441461028f5780638da5cb5b146102ad57806395d89b41146102cb5780639f8810cd146102e9578063a457c2d7146103075761012c565b806339509351116100f457806339509351146101eb5780634287f14a1461021b57806342966c681461023957806370a0823114610255578063715018a6146102855761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103ef565b6040516101469190611257565b60405180910390f35b61016960048036038101906101649190611312565b610481565b604051610176919061136d565b60405180910390f35b61018761049f565b6040516101949190611397565b60405180910390f35b6101b760048036038101906101b291906113b2565b6104a9565b6040516101c4919061136d565b60405180910390f35b6101d56105a1565b6040516101e29190611421565b60405180910390f35b61020560048036038101906102009190611312565b6105aa565b604051610212919061136d565b60405180910390f35b610223610656565b6040516102309190611397565b60405180910390f35b610253600480360381019061024e919061143c565b610676565b005b61026f600480360381019061026a9190611469565b61068a565b60405161027c9190611397565b60405180910390f35b61028d6106d3565b005b6102976106e7565b6040516102a49190611397565b60405180910390f35b6102b5610707565b6040516102c291906114a5565b60405180910390f35b6102d3610730565b6040516102e09190611257565b60405180910390f35b6102f16107c2565b6040516102fe9190611397565b60405180910390f35b610321600480360381019061031c9190611312565b6107e2565b60405161032e919061136d565b60405180910390f35b610351600480360381019061034c9190611312565b6108cd565b60405161035e919061136d565b60405180910390f35b61036f6108eb565b60405161037c9190611397565b60405180910390f35b61038d61090b565b60405161039a9190611397565b60405180910390f35b6103bd60048036038101906103b891906114c0565b61092c565b6040516103ca9190611397565b60405180910390f35b6103ed60048036038101906103e89190611469565b6109b3565b005b6060600480546103fe9061152f565b80601f016020809104026020016040519081016040528092919081815260200182805461042a9061152f565b80156104775780601f1061044c57610100808354040283529160200191610477565b820191906000526020600020905b81548152906001019060200180831161045a57829003601f168201915b5050505050905090565b600061049561048e610a37565b8484610a3f565b6001905092915050565b6000600354905090565b60006104b6848484610c0a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610501610a37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610581576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610578906115d3565b60405180910390fd5b6105958561058d610a37565b858403610a3f565b60019150509392505050565b60006012905090565b600061064c6105b7610a37565b8484600260006105c5610a37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106479190611622565b610a3f565b6001905092915050565b6012600a61066491906117ab565b6335a4e90061067391906117f6565b81565b610687610681610a37565b82610ebb565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106db61107c565b6106e560006110fa565b565b6012600a6106f591906117ab565b6335a4e90061070491906117f6565b81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461073f9061152f565b80601f016020809104026020016040519081016040528092919081815260200182805461076b9061152f565b80156107b85780601f1061078d576101008083540402835291602001916107b8565b820191906000526020600020905b81548152906001019060200180831161079b57829003601f168201915b5050505050905090565b6012600a6107d091906117ab565b6335a4e9006107df91906117f6565b81565b600080600260006107f1610a37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a5906118c2565b60405180910390fd5b6108c26108b9610a37565b85858403610a3f565b600191505092915050565b60006108e16108da610a37565b8484610c0a565b6001905092915050565b6012600a6108f991906117ab565b636b49d20061090891906117f6565b81565b6012600a61091991906117ab565b64010c388d0061092991906117f6565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109bb61107c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290611954565b60405180910390fd5b610a34816110fa565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa6906119e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690611a78565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bfd9190611397565b60405180910390a3505050565b60008111610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490611ae4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490611b76565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490611c08565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90611c9a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e499190611622565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ead9190611397565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290611d2c565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990611dbe565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461100a9190611dde565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161106f9190611397565b60405180910390a3505050565b611084610a37565b73ffffffffffffffffffffffffffffffffffffffff166110a2610707565b73ffffffffffffffffffffffffffffffffffffffff16146110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90611e5e565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111f85780820151818401526020810190506111dd565b83811115611207576000848401525b50505050565b6000601f19601f8301169050919050565b6000611229826111be565b61123381856111c9565b93506112438185602086016111da565b61124c8161120d565b840191505092915050565b60006020820190508181036000830152611271818461121e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112a98261127e565b9050919050565b6112b98161129e565b81146112c457600080fd5b50565b6000813590506112d6816112b0565b92915050565b6000819050919050565b6112ef816112dc565b81146112fa57600080fd5b50565b60008135905061130c816112e6565b92915050565b6000806040838503121561132957611328611279565b5b6000611337858286016112c7565b9250506020611348858286016112fd565b9150509250929050565b60008115159050919050565b61136781611352565b82525050565b6000602082019050611382600083018461135e565b92915050565b611391816112dc565b82525050565b60006020820190506113ac6000830184611388565b92915050565b6000806000606084860312156113cb576113ca611279565b5b60006113d9868287016112c7565b93505060206113ea868287016112c7565b92505060406113fb868287016112fd565b9150509250925092565b600060ff82169050919050565b61141b81611405565b82525050565b60006020820190506114366000830184611412565b92915050565b60006020828403121561145257611451611279565b5b6000611460848285016112fd565b91505092915050565b60006020828403121561147f5761147e611279565b5b600061148d848285016112c7565b91505092915050565b61149f8161129e565b82525050565b60006020820190506114ba6000830184611496565b92915050565b600080604083850312156114d7576114d6611279565b5b60006114e5858286016112c7565b92505060206114f6858286016112c7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061154757607f821691505b6020821081141561155b5761155a611500565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006115bd6028836111c9565b91506115c882611561565b604082019050919050565b600060208201905081810360008301526115ec816115b0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061162d826112dc565b9150611638836112dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561166d5761166c6115f3565b5b828201905092915050565b60008160011c9050919050565b6000808291508390505b60018511156116cf578086048111156116ab576116aa6115f3565b5b60018516156116ba5780820291505b80810290506116c885611678565b945061168f565b94509492505050565b6000826116e857600190506117a4565b816116f657600090506117a4565b816001811461170c576002811461171657611745565b60019150506117a4565b60ff841115611728576117276115f3565b5b8360020a91508482111561173f5761173e6115f3565b5b506117a4565b5060208310610133831016604e8410600b841016171561177a5782820a905083811115611775576117746115f3565b5b6117a4565b6117878484846001611685565b9250905081840481111561179e5761179d6115f3565b5b81810290505b9392505050565b60006117b6826112dc565b91506117c183611405565b92506117ee7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846116d8565b905092915050565b6000611801826112dc565b915061180c836112dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611845576118446115f3565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118ac6025836111c9565b91506118b782611850565b604082019050919050565b600060208201905081810360008301526118db8161189f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061193e6026836111c9565b9150611949826118e2565b604082019050919050565b6000602082019050818103600083015261196d81611931565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d06024836111c9565b91506119db82611974565b604082019050919050565b600060208201905081810360008301526119ff816119c3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a626022836111c9565b9150611a6d82611a06565b604082019050919050565b60006020820190508181036000830152611a9181611a55565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611ace601b836111c9565b9150611ad982611a98565b602082019050919050565b60006020820190508181036000830152611afd81611ac1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b606025836111c9565b9150611b6b82611b04565b604082019050919050565b60006020820190508181036000830152611b8f81611b53565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf26023836111c9565b9150611bfd82611b96565b604082019050919050565b60006020820190508181036000830152611c2181611be5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c846026836111c9565b9150611c8f82611c28565b604082019050919050565b60006020820190508181036000830152611cb381611c77565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d166021836111c9565b9150611d2182611cba565b604082019050919050565b60006020820190508181036000830152611d4581611d09565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611da86022836111c9565b9150611db382611d4c565b604082019050919050565b60006020820190508181036000830152611dd781611d9b565b9050919050565b6000611de9826112dc565b9150611df4836112dc565b925082821015611e0757611e066115f3565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e486020836111c9565b9150611e5382611e12565b602082019050919050565b60006020820190508181036000830152611e7781611e3b565b905091905056fea2646970667358221220bda77f7532badb79ea6f9300029de35eadaca5db1aef6b88d3fd12897251591264736f6c63430008090033

Deployed Bytecode Sourcemap

6285:8368:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7586:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9783:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8201:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10256:426;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8005:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11015:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6924:69;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14009:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8481:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5518:97;;;:::i;:::-;;6756:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4913;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7783:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6842:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11523:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8882:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6677:74;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6596:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9335:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5760:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7586:94;7640:13;7669:5;7662:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7586:94;:::o;9783:149::-;9861:4;9874:34;9883:12;:10;:12::i;:::-;9897:2;9901:6;9874:8;:34::i;:::-;9922:4;9915:11;;9783:149;;;;:::o;8201:102::-;8262:7;8285:12;;8278:19;;8201:102;:::o;10256:426::-;10362:4;10375:36;10385:6;10393:9;10404:6;10375:9;:36::i;:::-;10420:24;10447:11;:19;10459:6;10447:19;;;;;;;;;;;;;;;:33;10467:12;:10;:12::i;:::-;10447:33;;;;;;;;;;;;;;;;10420:60;;10515:6;10495:16;:26;;10487:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10592:57;10601:6;10609:12;:10;:12::i;:::-;10642:6;10623:16;:25;10592:8;:57::i;:::-;10672:4;10665:11;;;10256:426;;;;;:::o;8005:94::-;8063:5;6589:2;8077:16;;8005:94;:::o;11015:190::-;11098:4;11111:70;11120:12;:10;:12::i;:::-;11134:2;11170:10;11138:11;:25;11150:12;:10;:12::i;:::-;11138:25;;;;;;;;;;;;;;;:29;11164:2;11138:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;11111:8;:70::i;:::-;11195:4;11188:11;;11015:190;;;;:::o;6924:69::-;6589:2;6977;:15;;;;:::i;:::-;6962:11;:31;;;;:::i;:::-;6924:69;:::o;14009:79::-;14055:27;14061:12;:10;:12::i;:::-;14075:6;14055:5;:27::i;:::-;14009:79;:::o;8481:121::-;8555:7;8578:9;:18;8588:7;8578:18;;;;;;;;;;;;;;;;8571:25;;8481:121;;;:::o;5518:97::-;4813:13;:11;:13::i;:::-;5579:30:::1;5606:1;5579:18;:30::i;:::-;5518:97::o:0;6756:81::-;6589:2;6821;:15;;;;:::i;:::-;6806:11;:31;;;;:::i;:::-;6756:81;:::o;4913:::-;4959:7;4982:6;;;;;;;;;;;4975:13;;4913:81;:::o;7783:98::-;7839:13;7868:7;7861:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7783:98;:::o;6842:77::-;6589:2;6903;:15;;;;:::i;:::-;6888:11;:31;;;;:::i;:::-;6842:77;:::o;11523:370::-;11611:4;11624:24;11651:11;:25;11663:12;:10;:12::i;:::-;11651:25;;;;;;;;;;;;;;;:29;11677:2;11651:29;;;;;;;;;;;;;;;;11624:56;;11715:15;11695:16;:35;;11687:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11798:62;11807:12;:10;:12::i;:::-;11821:2;11844:15;11825:16;:34;11798:8;:62::i;:::-;11883:4;11876:11;;;11523:370;;;;:::o;8882:165::-;8968:4;8981:42;8991:12;:10;:12::i;:::-;9005:9;9016:6;8981:9;:42::i;:::-;9037:4;9030:11;;8882:165;;;;:::o;6677:74::-;6589:2;6735;:15;;;;:::i;:::-;6718:13;:33;;;;:::i;:::-;6677:74;:::o;6596:76::-;6589:2;6656;:15;;;;:::i;:::-;6639:13;:33;;;;:::i;:::-;6596:76;:::o;9335:133::-;9418:7;9441:11;:17;9453:4;9441:17;;;;;;;;;;;;;;;:21;9459:2;9441:21;;;;;;;;;;;;;;;;9434:28;;9335:133;;;;:::o;5760:191::-;4813:13;:11;:13::i;:::-;5865:1:::1;5845:22;;:8;:22;;;;5837:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5917:28;5936:8;5917:18;:28::i;:::-;5760:191:::0;:::o;3680:92::-;3733:7;3756:10;3749:17;;3680:92;:::o;14346:304::-;14454:1;14438:18;;:4;:18;;;;14430:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14526:1;14512:16;;:2;:16;;;;14504:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;14600:6;14576:11;:17;14588:4;14576:17;;;;;;;;;;;;;;;:21;14594:2;14576:21;;;;;;;;;;;;;;;:30;;;;14633:2;14618:26;;14627:4;14618:26;;;14637:6;14618:26;;;;;;:::i;:::-;;;;;;;;14346:304;;;:::o;12149:597::-;12260:1;12251:6;:10;12243:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;12326:1;12308:20;;:6;:20;;;;12300:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12406:1;12385:23;;:9;:23;;;;12377:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12457:21;12481:9;:17;12491:6;12481:17;;;;;;;;;;;;;;;;12457:41;;12530:6;12513:13;:23;;12505:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12641:6;12625:13;:22;12605:9;:17;12615:6;12605:17;;;;;;;;;;;;;;;:42;;;;12685:6;12661:9;:20;12671:9;12661:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12722:9;12705:35;;12714:6;12705:35;;;12733:6;12705:35;;;;;;:::i;:::-;;;;;;;;12236:510;12149:597;;;:::o;13417:432::-;13516:1;13497:21;;:7;:21;;;;13489:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13565:22;13590:9;:18;13600:7;13590:18;;;;;;;;;;;;;;;;13565:43;;13641:6;13623:14;:24;;13615:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13750:6;13733:14;:23;13712:9;:18;13722:7;13712:18;;;;;;;;;;;;;;;:44;;;;13786:6;13770:12;;:22;;;;;;;:::i;:::-;;;;;;;;13832:1;13806:37;;13815:7;13806:37;;;13836:6;13806:37;;;;;;:::i;:::-;;;;;;;;13482:367;13417:432;;:::o;5064:126::-;5135:12;:10;:12::i;:::-;5124:23;;:7;:5;:7::i;:::-;:23;;;5116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5064:126::o;6101:177::-;6171:16;6190:6;;;;;;;;;;;6171:25;;6212:8;6203:6;;:17;;;;;;;;;;;;;;;;;;6263:8;6232:40;;6253:8;6232:40;;;;;;;;;;;;6164:114;6101:177;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:227::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:10;7119:2;7111:6;7107:15;7100:35;6915:227;:::o;7148:366::-;7290:3;7311:67;7375:2;7370:3;7311:67;:::i;:::-;7304:74;;7387:93;7476:3;7387:93;:::i;:::-;7505:2;7500:3;7496:12;7489:19;;7148:366;;;:::o;7520:419::-;7686:4;7724:2;7713:9;7709:18;7701:26;;7773:9;7767:4;7763:20;7759:1;7748:9;7744:17;7737:47;7801:131;7927:4;7801:131;:::i;:::-;7793:139;;7520:419;;;:::o;7945:180::-;7993:77;7990:1;7983:88;8090:4;8087:1;8080:15;8114:4;8111:1;8104:15;8131:305;8171:3;8190:20;8208:1;8190:20;:::i;:::-;8185:25;;8224:20;8242:1;8224:20;:::i;:::-;8219:25;;8378:1;8310:66;8306:74;8303:1;8300:81;8297:107;;;8384:18;;:::i;:::-;8297:107;8428:1;8425;8421:9;8414:16;;8131:305;;;;:::o;8442:102::-;8484:8;8531:5;8528:1;8524:13;8503:34;;8442:102;;;:::o;8550:848::-;8611:5;8618:4;8642:6;8633:15;;8666:5;8657:14;;8680:712;8701:1;8691:8;8688:15;8680:712;;;8796:4;8791:3;8787:14;8781:4;8778:24;8775:50;;;8805:18;;:::i;:::-;8775:50;8855:1;8845:8;8841:16;8838:451;;;9270:4;9263:5;9259:16;9250:25;;8838:451;9320:4;9314;9310:15;9302:23;;9350:32;9373:8;9350:32;:::i;:::-;9338:44;;8680:712;;;8550:848;;;;;;;:::o;9404:1073::-;9458:5;9649:8;9639:40;;9670:1;9661:10;;9672:5;;9639:40;9698:4;9688:36;;9715:1;9706:10;;9717:5;;9688:36;9784:4;9832:1;9827:27;;;;9868:1;9863:191;;;;9777:277;;9827:27;9845:1;9836:10;;9847:5;;;9863:191;9908:3;9898:8;9895:17;9892:43;;;9915:18;;:::i;:::-;9892:43;9964:8;9961:1;9957:16;9948:25;;9999:3;9992:5;9989:14;9986:40;;;10006:18;;:::i;:::-;9986:40;10039:5;;;9777:277;;10163:2;10153:8;10150:16;10144:3;10138:4;10135:13;10131:36;10113:2;10103:8;10100:16;10095:2;10089:4;10086:12;10082:35;10066:111;10063:246;;;10219:8;10213:4;10209:19;10200:28;;10254:3;10247:5;10244:14;10241:40;;;10261:18;;:::i;:::-;10241:40;10294:5;;10063:246;10334:42;10372:3;10362:8;10356:4;10353:1;10334:42;:::i;:::-;10319:57;;;;10408:4;10403:3;10399:14;10392:5;10389:25;10386:51;;;10417:18;;:::i;:::-;10386:51;10466:4;10459:5;10455:16;10446:25;;9404:1073;;;;;;:::o;10483:281::-;10541:5;10565:23;10583:4;10565:23;:::i;:::-;10557:31;;10609:25;10625:8;10609:25;:::i;:::-;10597:37;;10653:104;10690:66;10680:8;10674:4;10653:104;:::i;:::-;10644:113;;10483:281;;;;:::o;10770:348::-;10810:7;10833:20;10851:1;10833:20;:::i;:::-;10828:25;;10867:20;10885:1;10867:20;:::i;:::-;10862:25;;11055:1;10987:66;10983:74;10980:1;10977:81;10972:1;10965:9;10958:17;10954:105;10951:131;;;11062:18;;:::i;:::-;10951:131;11110:1;11107;11103:9;11092:20;;10770:348;;;;:::o;11124:224::-;11264:34;11260:1;11252:6;11248:14;11241:58;11333:7;11328:2;11320:6;11316:15;11309:32;11124:224;:::o;11354:366::-;11496:3;11517:67;11581:2;11576:3;11517:67;:::i;:::-;11510:74;;11593:93;11682:3;11593:93;:::i;:::-;11711:2;11706:3;11702:12;11695:19;;11354:366;;;:::o;11726:419::-;11892:4;11930:2;11919:9;11915:18;11907:26;;11979:9;11973:4;11969:20;11965:1;11954:9;11950:17;11943:47;12007:131;12133:4;12007:131;:::i;:::-;11999:139;;11726:419;;;:::o;12151:225::-;12291:34;12287:1;12279:6;12275:14;12268:58;12360:8;12355:2;12347:6;12343:15;12336:33;12151:225;:::o;12382:366::-;12524:3;12545:67;12609:2;12604:3;12545:67;:::i;:::-;12538:74;;12621:93;12710:3;12621:93;:::i;:::-;12739:2;12734:3;12730:12;12723:19;;12382:366;;;:::o;12754:419::-;12920:4;12958:2;12947:9;12943:18;12935:26;;13007:9;13001:4;12997:20;12993:1;12982:9;12978:17;12971:47;13035:131;13161:4;13035:131;:::i;:::-;13027:139;;12754:419;;;:::o;13179:223::-;13319:34;13315:1;13307:6;13303:14;13296:58;13388:6;13383:2;13375:6;13371:15;13364:31;13179:223;:::o;13408:366::-;13550:3;13571:67;13635:2;13630:3;13571:67;:::i;:::-;13564:74;;13647:93;13736:3;13647:93;:::i;:::-;13765:2;13760:3;13756:12;13749:19;;13408:366;;;:::o;13780:419::-;13946:4;13984:2;13973:9;13969:18;13961:26;;14033:9;14027:4;14023:20;14019:1;14008:9;14004:17;13997:47;14061:131;14187:4;14061:131;:::i;:::-;14053:139;;13780:419;;;:::o;14205:221::-;14345:34;14341:1;14333:6;14329:14;14322:58;14414:4;14409:2;14401:6;14397:15;14390:29;14205:221;:::o;14432:366::-;14574:3;14595:67;14659:2;14654:3;14595:67;:::i;:::-;14588:74;;14671:93;14760:3;14671:93;:::i;:::-;14789:2;14784:3;14780:12;14773:19;;14432:366;;;:::o;14804:419::-;14970:4;15008:2;14997:9;14993:18;14985:26;;15057:9;15051:4;15047:20;15043:1;15032:9;15028:17;15021:47;15085:131;15211:4;15085:131;:::i;:::-;15077:139;;14804:419;;;:::o;15229:177::-;15369:29;15365:1;15357:6;15353:14;15346:53;15229:177;:::o;15412:366::-;15554:3;15575:67;15639:2;15634:3;15575:67;:::i;:::-;15568:74;;15651:93;15740:3;15651:93;:::i;:::-;15769:2;15764:3;15760:12;15753:19;;15412:366;;;:::o;15784:419::-;15950:4;15988:2;15977:9;15973:18;15965:26;;16037:9;16031:4;16027:20;16023:1;16012:9;16008:17;16001:47;16065:131;16191:4;16065:131;:::i;:::-;16057:139;;15784:419;;;:::o;16209:224::-;16349:34;16345:1;16337:6;16333:14;16326:58;16418:7;16413:2;16405:6;16401:15;16394:32;16209:224;:::o;16439:366::-;16581:3;16602:67;16666:2;16661:3;16602:67;:::i;:::-;16595:74;;16678:93;16767:3;16678:93;:::i;:::-;16796:2;16791:3;16787:12;16780:19;;16439:366;;;:::o;16811:419::-;16977:4;17015:2;17004:9;17000:18;16992:26;;17064:9;17058:4;17054:20;17050:1;17039:9;17035:17;17028:47;17092:131;17218:4;17092:131;:::i;:::-;17084:139;;16811:419;;;:::o;17236:222::-;17376:34;17372:1;17364:6;17360:14;17353:58;17445:5;17440:2;17432:6;17428:15;17421:30;17236:222;:::o;17464:366::-;17606:3;17627:67;17691:2;17686:3;17627:67;:::i;:::-;17620:74;;17703:93;17792:3;17703:93;:::i;:::-;17821:2;17816:3;17812:12;17805:19;;17464:366;;;:::o;17836:419::-;18002:4;18040:2;18029:9;18025:18;18017:26;;18089:9;18083:4;18079:20;18075:1;18064:9;18060:17;18053:47;18117:131;18243:4;18117:131;:::i;:::-;18109:139;;17836:419;;;:::o;18261:225::-;18401:34;18397:1;18389:6;18385:14;18378:58;18470:8;18465:2;18457:6;18453:15;18446:33;18261:225;:::o;18492:366::-;18634:3;18655:67;18719:2;18714:3;18655:67;:::i;:::-;18648:74;;18731:93;18820:3;18731:93;:::i;:::-;18849:2;18844:3;18840:12;18833:19;;18492:366;;;:::o;18864:419::-;19030:4;19068:2;19057:9;19053:18;19045:26;;19117:9;19111:4;19107:20;19103:1;19092:9;19088:17;19081:47;19145:131;19271:4;19145:131;:::i;:::-;19137:139;;18864:419;;;:::o;19289:220::-;19429:34;19425:1;19417:6;19413:14;19406:58;19498:3;19493:2;19485:6;19481:15;19474:28;19289:220;:::o;19515:366::-;19657:3;19678:67;19742:2;19737:3;19678:67;:::i;:::-;19671:74;;19754:93;19843:3;19754:93;:::i;:::-;19872:2;19867:3;19863:12;19856:19;;19515:366;;;:::o;19887:419::-;20053:4;20091:2;20080:9;20076:18;20068:26;;20140:9;20134:4;20130:20;20126:1;20115:9;20111:17;20104:47;20168:131;20294:4;20168:131;:::i;:::-;20160:139;;19887:419;;;:::o;20312:221::-;20452:34;20448:1;20440:6;20436:14;20429:58;20521:4;20516:2;20508:6;20504:15;20497:29;20312:221;:::o;20539:366::-;20681:3;20702:67;20766:2;20761:3;20702:67;:::i;:::-;20695:74;;20778:93;20867:3;20778:93;:::i;:::-;20896:2;20891:3;20887:12;20880:19;;20539:366;;;:::o;20911:419::-;21077:4;21115:2;21104:9;21100:18;21092:26;;21164:9;21158:4;21154:20;21150:1;21139:9;21135:17;21128:47;21192:131;21318:4;21192:131;:::i;:::-;21184:139;;20911:419;;;:::o;21336:191::-;21376:4;21396:20;21414:1;21396:20;:::i;:::-;21391:25;;21430:20;21448:1;21430:20;:::i;:::-;21425:25;;21469:1;21466;21463:8;21460:34;;;21474:18;;:::i;:::-;21460:34;21519:1;21516;21512:9;21504:17;;21336:191;;;;:::o;21533:182::-;21673:34;21669:1;21661:6;21657:14;21650:58;21533:182;:::o;21721:366::-;21863:3;21884:67;21948:2;21943:3;21884:67;:::i;:::-;21877:74;;21960:93;22049:3;21960:93;:::i;:::-;22078:2;22073:3;22069:12;22062:19;;21721:366;;;:::o;22093:419::-;22259:4;22297:2;22286:9;22282:18;22274:26;;22346:9;22340:4;22336:20;22332:1;22321:9;22317:17;22310:47;22374:131;22500:4;22374:131;:::i;:::-;22366:139;;22093:419;;;:::o

Swarm Source

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