Token Glmr Pad
Overview ERC20
Price
$0.00 @ 0.000000 GLMR
Fully Diluted Market Cap
Total Supply:
68,259,478,757.612911 PAD
Holders:
261 addresses
Transfers:
-
Contract:
Decimals:
18
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GlmrPad
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-01 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/utils/Context.sol // 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: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ 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 Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); 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); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); 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); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } } // File: Pad.sol pragma solidity ^0.8.0; contract Ownable is Context { address private _owner; constructor () { _owner = address(0x70790550d5F01EDd5B2Ed1dFf05eDC52cD4F1Eda); //minter contract address } /** * @dev Returns the address of the owner. */ function owner() public view 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 {ERC20} token, including: * * - ability for holders to burn (destroy) their tokens * - a owner role that allows for token minting (creation) * */ contract GlmrPad is ERC20Burnable, Ownable { /** * @dev Mints the initial supply of 20 bilion $PAD (10% of max supply) */ constructor() ERC20("Glmr Pad", "PAD") { _mint(msg.sender, 20*1e9*1e18); } /** * @dev Creates `amount` new tokens for `to`. * * See {ERC20-_mint}. * * Requirements: * * - the caller must be the owner. */ function mint(address to, uint256 amount) onlyOwner external { _mint(to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600881526020016711db1b5c8814185960c21b8152506040518060400160405280600381526020016214105160ea1b815250816003908051906020019062000067929190620001ac565b5080516200007d906004906020840190620001ac565b5050600580546001600160a01b0319167370790550d5f01edd5b2ed1dff05edc52cd4f1eda17905550620000be336b409f9cbc7c4a04c220000000620000c4565b620002b4565b6001600160a01b0382166200011f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000133919062000252565b90915550506001600160a01b038216600090815260208190526040812080548392906200016290849062000252565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001ba9062000277565b90600052602060002090601f016020900481019282620001de576000855562000229565b82601f10620001f957805160ff191683800117855562000229565b8280016001018555821562000229579182015b82811115620002295782518255916020019190600101906200020c565b50620002379291506200023b565b5090565b5b808211156200023757600081556001016200023c565b600082198211156200027257634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200028c57607f821691505b60208210811415620002ae57634e487b7160e01b600052602260045260246000fd5b50919050565b610cbf80620002c46000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806342966c681161009757806395d89b411161006657806395d89b4114610201578063a457c2d714610209578063a9059cbb1461021c578063dd62ed3e1461022f57600080fd5b806342966c681461019757806370a08231146101aa57806379cc6790146101d35780638da5cb5b146101e657600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806340c10f191461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610268565b60405161010f9190610bb6565b60405180910390f35b61012b610126366004610b75565b6102fa565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b61015b366004610b3a565b610310565b6040516012815260200161010f565b61012b61017d366004610b75565b6103bf565b610195610190366004610b75565b6103fb565b005b6101956101a5366004610b9e565b610463565b61013f6101b8366004610ae7565b6001600160a01b031660009081526020819052604090205490565b6101956101e1366004610b75565b610470565b6005546040516001600160a01b03909116815260200161010f565b6101026104f6565b61012b610217366004610b75565b610505565b61012b61022a366004610b75565b61059e565b61013f61023d366004610b08565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461027790610c38565b80601f01602080910402602001604051908101604052809291908181526020018280546102a390610c38565b80156102f05780601f106102c5576101008083540402835291602001916102f0565b820191906000526020600020905b8154815290600101906020018083116102d357829003601f168201915b5050505050905090565b60006103073384846105ab565b50600192915050565b600061031d8484846106cf565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103a75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103b485338584036105ab565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103079185906103f6908690610c09565b6105ab565b6005546001600160a01b031633146104555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039e565b61045f828261089e565b5050565b61046d338261097d565b50565b600061047c833361023d565b9050818110156104da5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161039e565b6104e783338484036105ab565b6104f1838361097d565b505050565b60606004805461027790610c38565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105875760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161039e565b61059433858584036105ab565b5060019392505050565b60006103073384846106cf565b6001600160a01b03831661060d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161039e565b6001600160a01b03821661066e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161039e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107335760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161039e565b6001600160a01b0382166107955760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161039e565b6001600160a01b0383166000908152602081905260409020548181101561080d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161039e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610844908490610c09565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161089091815260200190565b60405180910390a350505050565b6001600160a01b0382166108f45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161039e565b80600260008282546109069190610c09565b90915550506001600160a01b03821660009081526020819052604081208054839290610933908490610c09565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166109dd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161039e565b6001600160a01b03821660009081526020819052604090205481811015610a515760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161039e565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a80908490610c21565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b0381168114610ae257600080fd5b919050565b600060208284031215610af8578081fd5b610b0182610acb565b9392505050565b60008060408385031215610b1a578081fd5b610b2383610acb565b9150610b3160208401610acb565b90509250929050565b600080600060608486031215610b4e578081fd5b610b5784610acb565b9250610b6560208501610acb565b9150604084013590509250925092565b60008060408385031215610b87578182fd5b610b9083610acb565b946020939093013593505050565b600060208284031215610baf578081fd5b5035919050565b6000602080835283518082850152825b81811015610be257858101830151858201604001528201610bc6565b81811115610bf35783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610c1c57610c1c610c73565b500190565b600082821015610c3357610c33610c73565b500390565b600181811c90821680610c4c57607f821691505b60208210811415610c6d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122077016b2a2b804b62ece002fa2851adc78a1a3ec19fea28b32e7e1b26f878391264736f6c63430008040033
Deployed ByteCode Sourcemap
18756:532:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6655:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8822:169;;;;;;:::i;:::-;;:::i;:::-;;;1848:14:1;;1841:22;1823:41;;1811:2;1796:18;8822:169:0;1778:92:1;7775:108:0;7863:12;;7775:108;;;7400:25:1;;;7388:2;7373:18;7775:108:0;7355:76:1;9473:492:0;;;;;;:::i;:::-;;:::i;7617:93::-;;;7700:2;7578:36:1;;7566:2;7551:18;7617:93:0;7533:87:1;10374:215:0;;;;;;:::i;:::-;;:::i;19186:97::-;;;;;;:::i;:::-;;:::i;:::-;;17184:91;;;;;;:::i;:::-;;:::i;7946:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8047:18:0;8020:7;8047:18;;;;;;;;;;;;7946:127;17594:368;;;;;;:::i;:::-;;:::i;18284:79::-;18349:6;;18284:79;;-1:-1:-1;;;;;18349:6:0;;;1621:51:1;;1609:2;1594:18;18284:79:0;1576:102:1;6874:104:0;;;:::i;11092:413::-;;;;;;:::i;:::-;;:::i;8286:175::-;;;;;;:::i;:::-;;:::i;8524:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8640:18:0;;;8613:7;8640:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8524:151;6655:100;6709:13;6742:5;6735:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6655:100;:::o;8822:169::-;8905:4;8922:39;4390:10;8945:7;8954:6;8922:8;:39::i;:::-;-1:-1:-1;8979:4:0;8822:169;;;;:::o;9473:492::-;9613:4;9630:36;9640:6;9648:9;9659:6;9630:9;:36::i;:::-;-1:-1:-1;;;;;9706:19:0;;9679:24;9706:19;;;:11;:19;;;;;;;;4390:10;9706:33;;;;;;;;9758:26;;;;9750:79;;;;-1:-1:-1;;;9750:79:0;;4302:2:1;9750:79:0;;;4284:21:1;4341:2;4321:18;;;4314:30;4380:34;4360:18;;;4353:62;-1:-1:-1;;;4431:18:1;;;4424:38;4479:19;;9750:79:0;;;;;;;;;9865:57;9874:6;4390:10;9915:6;9896:16;:25;9865:8;:57::i;:::-;-1:-1:-1;9953:4:0;;9473:492;-1:-1:-1;;;;9473:492:0:o;10374:215::-;4390:10;10462:4;10511:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10511:34:0;;;;;;;;;;10462:4;;10479:80;;10502:7;;10511:47;;10548:10;;10511:47;:::i;:::-;10479:8;:80::i;19186:97::-;18496:6;;-1:-1:-1;;;;;18496:6:0;4390:10;18496:22;18488:67;;;;-1:-1:-1;;;18488:67:0;;4711:2:1;18488:67:0;;;4693:21:1;;;4730:18;;;4723:30;4789:34;4769:18;;;4762:62;4841:18;;18488:67:0;4683:182:1;18488:67:0;19258:17:::1;19264:2;19268:6;19258:5;:17::i;:::-;19186:97:::0;;:::o;17184:91::-;17240:27;4390:10;17260:6;17240:5;:27::i;:::-;17184:91;:::o;17594:368::-;17671:24;17698:32;17708:7;4390:10;8524:151;:::i;17698:32::-;17671:59;;17769:6;17749:16;:26;;17741:75;;;;-1:-1:-1;;;17741:75:0;;5072:2:1;17741:75:0;;;5054:21:1;5111:2;5091:18;;;5084:30;5150:34;5130:18;;;5123:62;-1:-1:-1;;;5201:18:1;;;5194:34;5245:19;;17741:75:0;5044:226:1;17741:75:0;17852:58;17861:7;4390:10;17903:6;17884:16;:25;17852:8;:58::i;:::-;17932:22;17938:7;17947:6;17932:5;:22::i;:::-;17594:368;;;:::o;6874:104::-;6930:13;6963:7;6956:14;;;;;:::i;11092:413::-;4390:10;11185:4;11229:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11229:34:0;;;;;;;;;;11282:35;;;;11274:85;;;;-1:-1:-1;;;11274:85:0;;6690:2:1;11274:85:0;;;6672:21:1;6729:2;6709:18;;;6702:30;6768:34;6748:18;;;6741:62;-1:-1:-1;;;6819:18:1;;;6812:35;6864:19;;11274:85:0;6662:227:1;11274:85:0;11395:67;4390:10;11418:7;11446:15;11427:16;:34;11395:8;:67::i;:::-;-1:-1:-1;11493:4:0;;11092:413;-1:-1:-1;;;11092:413:0:o;8286:175::-;8372:4;8389:42;4390:10;8413:9;8424:6;8389:9;:42::i;14776:380::-;-1:-1:-1;;;;;14912:19:0;;14904:68;;;;-1:-1:-1;;;14904:68:0;;6285:2:1;14904:68:0;;;6267:21:1;6324:2;6304:18;;;6297:30;6363:34;6343:18;;;6336:62;-1:-1:-1;;;6414:18:1;;;6407:34;6458:19;;14904:68:0;6257:226:1;14904:68:0;-1:-1:-1;;;;;14991:21:0;;14983:68;;;;-1:-1:-1;;;14983:68:0;;3492:2:1;14983:68:0;;;3474:21:1;3531:2;3511:18;;;3504:30;3570:34;3550:18;;;3543:62;-1:-1:-1;;;3621:18:1;;;3614:32;3663:19;;14983:68:0;3464:224:1;14983:68:0;-1:-1:-1;;;;;15064:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15116:32;;7400:25:1;;;15116:32:0;;7373:18:1;15116:32:0;;;;;;;14776:380;;;:::o;11995:733::-;-1:-1:-1;;;;;12135:20:0;;12127:70;;;;-1:-1:-1;;;12127:70:0;;5879:2:1;12127:70:0;;;5861:21:1;5918:2;5898:18;;;5891:30;5957:34;5937:18;;;5930:62;-1:-1:-1;;;6008:18:1;;;6001:35;6053:19;;12127:70:0;5851:227:1;12127:70:0;-1:-1:-1;;;;;12216:23:0;;12208:71;;;;-1:-1:-1;;;12208:71:0;;2685:2:1;12208:71:0;;;2667:21:1;2724:2;2704:18;;;2697:30;2763:34;2743:18;;;2736:62;-1:-1:-1;;;2814:18:1;;;2807:33;2857:19;;12208:71:0;2657:225:1;12208:71:0;-1:-1:-1;;;;;12376:17:0;;12352:21;12376:17;;;;;;;;;;;12412:23;;;;12404:74;;;;-1:-1:-1;;;12404:74:0;;3895:2:1;12404:74:0;;;3877:21:1;3934:2;3914:18;;;3907:30;3973:34;3953:18;;;3946:62;-1:-1:-1;;;4024:18:1;;;4017:36;4070:19;;12404:74:0;3867:228:1;12404:74:0;-1:-1:-1;;;;;12514:17:0;;;:9;:17;;;;;;;;;;;12534:22;;;12514:42;;12578:20;;;;;;;;:30;;12550:6;;12514:9;12578:30;;12550:6;;12578:30;:::i;:::-;;;;;;;;12643:9;-1:-1:-1;;;;;12626:35:0;12635:6;-1:-1:-1;;;;;12626:35:0;;12654:6;12626:35;;;;7400:25:1;;7388:2;7373:18;;7355:76;12626:35:0;;;;;;;;11995:733;;;;:::o;13015:399::-;-1:-1:-1;;;;;13099:21:0;;13091:65;;;;-1:-1:-1;;;13091:65:0;;7096:2:1;13091:65:0;;;7078:21:1;7135:2;7115:18;;;7108:30;7174:33;7154:18;;;7147:61;7225:18;;13091:65:0;7068:181:1;13091:65:0;13247:6;13231:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13264:18:0;;:9;:18;;;;;;;;;;:28;;13286:6;;13264:9;:28;;13286:6;;13264:28;:::i;:::-;;;;-1:-1:-1;;13308:37:0;;7400:25:1;;;-1:-1:-1;;;;;13308:37:0;;;13325:1;;13308:37;;7388:2:1;7373:18;13308:37:0;;;;;;;19186:97;;:::o;13747:591::-;-1:-1:-1;;;;;13831:21:0;;13823:67;;;;-1:-1:-1;;;13823:67:0;;5477:2:1;13823:67:0;;;5459:21:1;5516:2;5496:18;;;5489:30;5555:34;5535:18;;;5528:62;-1:-1:-1;;;5606:18:1;;;5599:31;5647:19;;13823:67:0;5449:223:1;13823:67:0;-1:-1:-1;;;;;13990:18:0;;13965:22;13990:18;;;;;;;;;;;14027:24;;;;14019:71;;;;-1:-1:-1;;;14019:71:0;;3089:2:1;14019:71:0;;;3071:21:1;3128:2;3108:18;;;3101:30;3167:34;3147:18;;;3140:62;-1:-1:-1;;;3218:18:1;;;3211:32;3260:19;;14019:71:0;3061:224:1;14019:71:0;-1:-1:-1;;;;;14126:18:0;;:9;:18;;;;;;;;;;14147:23;;;14126:44;;14192:12;:22;;14164:6;;14126:9;14192:22;;14164:6;;14192:22;:::i;:::-;;;;-1:-1:-1;;14232:37:0;;7400:25:1;;;14258:1:0;;-1:-1:-1;;;;;14232:37:0;;;;;7388:2:1;7373:18;14232:37:0;;;;;;;17594:368;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;1339:6;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1875:603::-;1987:4;2016:2;2045;2034:9;2027:21;2077:6;2071:13;2120:6;2115:2;2104:9;2100:18;2093:34;2145:4;2158:140;2172:6;2169:1;2166:13;2158:140;;;2267:14;;;2263:23;;2257:30;2233:17;;;2252:2;2229:26;2222:66;2187:10;;2158:140;;;2316:6;2313:1;2310:13;2307:2;;;2386:4;2381:2;2372:6;2361:9;2357:22;2353:31;2346:45;2307:2;-1:-1:-1;2462:2:1;2441:15;-1:-1:-1;;2437:29:1;2422:45;;;;2469:2;2418:54;;1996:482;-1:-1:-1;;;1996:482:1:o;7625:128::-;7665:3;7696:1;7692:6;7689:1;7686:13;7683:2;;;7702:18;;:::i;:::-;-1:-1:-1;7738:9:1;;7673:80::o;7758:125::-;7798:4;7826:1;7823;7820:8;7817:2;;;7831:18;;:::i;:::-;-1:-1:-1;7868:9:1;;7807:76::o;7888:380::-;7967:1;7963:12;;;;8010;;;8031:2;;8085:4;8077:6;8073:17;8063:27;;8031:2;8138;8130:6;8127:14;8107:18;8104:38;8101:2;;;8184:10;8179:3;8175:20;8172:1;8165:31;8219:4;8216:1;8209:15;8247:4;8244:1;8237:15;8101:2;;7943:325;;;:::o;8273:127::-;8334:10;8329:3;8325:20;8322:1;8315:31;8365:4;8362:1;8355:15;8389:4;8386:1;8379:15
Swarm Source
ipfs://77016b2a2b804b62ece002fa2851adc78a1a3ec19fea28b32e7e1b26f8783912